forked from pantos-io/client-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 983 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 983 Bytes
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
[tool.poetry]
name = "pantos-client-cli"
version = "1.1.1"
description = "Client CLI for engaging with the Pantos system"
authors = ["Pantos GmbH <contact@pantos.io>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [
{ include = "pantos"}
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pantos"]
namespaces = true
[tool.poetry.group.test.dependencies]
pytest = "7.4.0"
pytest-cov = "4.1.0"
[tool.poetry.group.lint.dependencies]
bandit = "1.7.5"
flake8 = "6.0.0"
isort = "5.12.0"
mypy = "1.0.1"
types-pyyaml = "6.0.12.10"
types-requests = "2.31.0.1"
yapf = "0.40.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "3.3.3"
[tool.poetry.dependencies]
python = "^3.10"
pantos-common = "1.4.1"
pantos-client-library = "1.1.2"
Cerberus = "1.3.4"
PyYAML = "6.0.1"
requests = "2.32.0"
web3 = "6.5.0"
typing-extensions = "4.11.0"
pyaml-env = "1.2.1"
python-dotenv = "1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"