forked from murbard/pytezos
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
162 lines (151 loc) Β· 3.6 KB
/
Copy pathpyproject.toml
File metadata and controls
162 lines (151 loc) Β· 3.6 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[project]
name = "pytezos"
version = "3.19.0"
description = "Python toolkit for Tezos"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10,<3.14"
authors = [
{ name = "Michael Zaikin", email = "mz@baking-bad.org" },
{ name = "Lev Gorodetskii", email = "pytezos@drsr.io" },
{ name = "Igor Sereda", email = "sereda.igor.s@gmail.com" },
{ name = "Arthur Breitman" },
{ name = "Roman Serikov" },
]
maintainers = [
{ name = "Baking Bad team", email = "hello@baking-bad.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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"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",
"ply>=3.11",
"py-ecc==7.0.1",
"pysodium>=0.7.10",
"python-dateutil>=2.8.2",
"requests>=2.28.2",
"simple-bson>=0.0.3",
"simplejson>=3.17.6",
"strict-rfc3339>=0.7",
"tabulate>=0.9.0",
"testcontainers>=3.7.0",
"tqdm>=4.62.3",
]
[project.urls]
homepage = "https://pytezos.org"
repository = "https://github.com/baking-bad/pytezos"
[project.scripts]
pytezos = "pytezos.cli.cli:cli"
michelson-kernel = "michelson_kernel.cli:cli"
[project.optional-dependencies]
jupyter = [
"ipykernel>=6",
"jupyter-client>=7",
"notebook>=7,<8",
]
[dependency-groups]
dev = [
"black>=26.5.1",
"diff-cover>=10.2.0",
"isort>=8.0.1",
"mypy>=2.1.0",
"parameterized>=0.9.0",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"pytest-xdist>=3.8.0",
"pyyaml>=6.0.3",
"ruff>=0.15.13",
"sphinx>=8.1.3",
"sphinx-click>=6.2.0",
"sphinx-rtd-theme>=3.1.0",
"sphinx-sitemap>=2.9.0",
"sphinxcontrib-googleanalytics>=0.5",
"types-python-dateutil>=2.9.0.20260518",
"types-pyyaml>=6.0.12.20260518",
"types-requests>=2.33.0.20260518",
"types-setuptools>=82.0.0.20260518",
"types-simplejson>=3.20.0.20260518",
"types-tabulate>=0.10.0.20260508",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pytezos", "src/michelson_kernel"]
[tool.isort]
line_length = 120
force_single_line = true
[tool.black]
line-length = 120
target-version = ['py310']
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",
]
lint.extend-select = ["B", "C", "RET", "SIM"]
target-version = "py310"
[tool.mypy]
python_version = "3.10"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"