-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
77 lines (67 loc) · 1.94 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "atxm"
version = "0.5.0"
authors = [
{ name="NuCypher", email="[email protected]" },
]
description = "Automatic Transaction Machine (ATxM) for Ethereum"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Typing :: Typed",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
[tool.poetry]
name = "atxm"
version = "0.5.0"
authors = ["NuCypher <[email protected]>"]
description = "Automatic Transaction Machine (ATxM) for Ethereum."
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {test = { file = ["dev-requirements.txt"] }}
[project.urls]
Homepage = "https://github.com/nucypher/atxm"
Issues = "https://github.com/nucypher/atxm/issues"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry.dependencies]
python = ">=3.9,<4"
web3 = "^6.15.1"
twisted = "*"
eth-account = ">=0.10.0"
eth-typing = "*"
eth-utils = "*"
eth-abi = "*"
eth-keys = "*"
python-statemachine = "*"
rlp = "*"
urllib3 = "*"
[tool.poetry.dev-dependencies]
# testing
eth-ape = "*"
pytest = "*"
pytest-mock = "*"
pytest-twisted = "*"
# quality control
pre-commit = "*"
black = "*"
ruff = "*"
[tool.ruff]
lint.select = ["E", "F", "I"]
lint.ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["nucypher"]