-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
36 lines (31 loc) · 910 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "nepseutils"
version = "0.4.7"
description = "Collection of scripts to interact with NEPSE related websites!"
authors = ["Daze <[email protected]>"]
repository = "https://github.com/arpandaze/nepseutils"
readme = "README.md"
keywords = ["nepse","meroshare","tms"]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
tenacity = "^8.2.2"
cryptography = "^41.0.1"
tabulate = "^0.9.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.2"
pylint = "^2.17.4"
black = "^23.3.0"
jedi = "^0.18.2"
isort = "^5.12.0"
rope = "^1.8.0"
flake8 = "^6.0.0"
[tool.poetry.scripts]
nepseutils = "nepseutils.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry_bumpversion.replacements]]
files = ["tests/test_nepseutils.py"]
search = 'assert __version__ == "{current_version}"'
replace = 'assert __version__ == "{new_version}"'