forked from pantos-io/validatornode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (53 loc) · 1.28 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
56
57
58
59
[tool.poetry]
name = "pantos-validator-node"
version = "2.1.3"
description = "Pantos Validator Node (reference implementation)"
authors = ["Pantos GmbH <[email protected]>"]
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 = "8.3.4"
pytest-cov = "6.0.0"
web3 = {extras = ["tester"], version = "^6.5.0"}
[tool.poetry.group.lint.dependencies]
bandit = "1.8.0"
flake8 = "7.1.1"
isort = "5.13.2"
mypy = "1.0.1"
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]
python = "^3.10"
pantos-common = "4.0.1"
alembic = "1.14.0"
celery = "5.3.1"
Cerberus = "1.3.4"
Flask = "3.0.3"
Flask-Cors = "5.0.0"
Flask-RESTful = "0.3.10"
marshmallow = "3.23.1"
psycopg = {extras = ["binary", "pool"], version = "3.2.3"}
PyYAML = "6.0.1"
SQLAlchemy = "2.0.36"
web3 = "6.5.0"
JSON-log-formatter = "0.5.2"
pyaml-env = "1.2.1"
python-dotenv = "1.0.1"
semantic-version = "2.10.0"
requests = "2.32.3"
hexbytes = "1.2.1"
flower = "^2.0.1"
gunicorn = ">=22,<24"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"