-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.04 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "kdna"
version = "0.1.0"
description = ""
authors = ["D3 2023-2026 <polytech-do3@etu.umontpellier.fr>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/somoslosdorados/KDNA"
packages = [
{ include = "kdna" },
]
[tool.poetry.scripts]
kdna = "kdna.__main__:kdna"
[tool.setuptools]
script-files = ["kdna = kdna.__main__:kdna"]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
fabric = "^3.2.2"
pycryptodome = "^3.19.0"
pyzipper = "^0.3.6"
tabulate = "^0.9.0"
pytest-mock = "^3.12.0"
mocker = "^1.1.1"
types-tabulate = "^0.9.0.20240106"
types-paramiko = "^3.4.0.20240106"
[tool.poetry.group.dev.dependencies]
tox-gh-actions = "^3.1.3"
pylint = "^3.0.2"
mypy = "^1.7.1"
pytest = "^7.4.3"
sphinx = "^7.2.6"
chardet = "^5.2.0"
sphinx-rtd-theme = "^2.0.0"
sphinx-autoapi = "^3.0.0"
m2r2 = "^0.3.3.post2"
pydocstyle = "^6.3.0"
tox = "^4.11.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[built-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"