-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
51 lines (45 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
50
51
[tool.poetry]
name = "pantos-client-library"
version = "3.0.1"
description = "Client library 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"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pantos"]
namespaces = true
[tool.poetry.group.test.dependencies]
pytest = "8.3.4"
pytest-cov = "6.0.0"
[tool.poetry.group.lint.dependencies]
bandit = "1.8.0"
flake8 = "7.1.1"
isort = "5.13.2"
mypy = "1.13.0"
types-pyyaml = "6.0.12.20240917"
types-requests = "2.32.0.20241016"
yapf = "0.43.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "4.0.1"
[tool.poetry.dependencies]
pantos-common = "4.0.1"
python = "^3.10"
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"
hexbytes = "1.2.1"
semantic-version = "2.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"