-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
55 lines (48 loc) · 1.14 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
50
51
52
53
54
55
[tool.poetry]
name = "pantos-client-cli"
version = "2.0.1"
description = "Client CLI for engaging with the Pantos system"
authors = ["Pantos GmbH <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [
{ include = "pantos"}
]
include = [
"pantos/client-library.yml",
"pantos/client-library.env",
"pantos/client-cli.yml",
"pantos/client-cli.env",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pantos"]
namespaces = true
[tool.poetry.group.test.dependencies]
pytest = "8.3.3"
pytest-cov = "5.0.0"
[tool.poetry.group.lint.dependencies]
bandit = "1.7.10"
flake8 = "7.1.1"
isort = "5.13.2"
mypy = "1.12.0"
types-pyyaml = "6.0.12.20240917"
types-requests = "2.32.0.20241016"
yapf = "0.40.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "4.0.1"
[tool.poetry.dependencies]
python = "^3.10"
pantos-common = "4.0.1"
pantos-client-library = "3.0.1"
Cerberus = "1.3.4"
PyYAML = "6.0.1"
requests = "2.32.3"
web3 = "6.5.0"
pyaml-env = "1.2.1"
python-dotenv = "1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pantos-cli = "pantos.cli.__main__:main"