forked from murbard/pytezos
-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
143 lines (134 loc) Β· 3.24 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[tool.poetry]
name = "pytezos"
version = "3.13.5"
description = "Python toolkit for Tezos"
license = "MIT"
authors = [
"Michael Zaikin <[email protected]>",
"Lev Gorodetskii <[email protected]>",
"Igor Sereda <[email protected]>",
"Arthur Breitman",
"Roman Serikov",
]
maintainers = [
"Lev Gorodetskii <[email protected]>",
"Igor Sereda <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/baking-bad/pytezos"
homepage = "https://pytezos.org"
keywords = ['tezos', 'blockchain', 'sdk', 'michelson', 'repl', 'cryptocurrencies', 'smart-contracts', 'jupyter', 'ipython', 'docker', 'crypto']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
packages = [
{ include = "pytezos", from = "src" },
{ include = "michelson_kernel", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
attrs = ">=21.4.0"
base58 = ">=2.1.1"
cattrs = ">=22.1.0"
click = ">=8.1.3"
coincurve = ">=20.0.0"
cryptography = ">=42.0.4"
deprecation = ">=2.1.0"
docker = ">=6.0.0"
fastecdsa = ">=2.2.3"
jsonschema = ">=4.3.2"
mnemonic = ">=0.21"
netstruct = ">=1.1.2"
notebook = ">=6.5,<7"
ply = ">=3.11"
py-ecc = ">=7.0.0"
pysodium = ">=0.7.10"
python-dateutil = ">=2.8.2"
requests = ">=2.28.2"
simplejson = ">=3.17.6"
strict-rfc3339 = ">=0.7"
tabulate = ">=0.9.0"
testcontainers = ">=3.7.0,<4.8.0"
tqdm = ">=4.62.3"
simple-bson = ">=0.0.3"
[tool.poetry.dev-dependencies]
black = "*"
diff-cover = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-xdist = "*"
Sphinx = "*"
sphinx-click = "*"
sphinxcontrib-googleanalytics = "*"
sphinx-rtd-theme = "*"
sphinx-sitemap = "*"
types-python-dateutil = "*"
types-PyYAML = "*"
types-requests = "*"
types-setuptools = "*"
types-simplejson = "*"
types-tabulate = "*"
parameterized = "*"
PyYAML = "*"
ruff = "*"
[tool.poetry.scripts]
pytezos = 'pytezos.cli.cli:cli'
michelson-kernel = 'michelson_kernel.cli:cli'
[tool.isort]
line_length = 120
force_single_line = true
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
skip-string-normalization = true
[tool.ruff]
line-length = 120
lint.ignore = [
"B904",
"C417",
"C901",
"E402",
"E713",
"E721",
"E741",
"F401",
"F403",
"F405",
"F541",
"F811",
"F821",
"F841",
"RET504",
"RET505",
"RET506",
"RET507",
"SIM102",
"SIM108",
"SIM114",
]
target-version = "py312"
lint.extend-select = ["B", "C", "RET", "SIM"]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
[tool.mypy]
python_version = "3.12"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"