forked from murbard/pytezos
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
142 lines (133 loc) Β· 3.2 KB
/
pyproject.toml
File metadata and controls
142 lines (133 loc) Β· 3.2 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
[tool.poetry]
name = "pytezos"
version = "3.17.0"
description = "Python toolkit for Tezos"
license = "MIT"
authors = [
"Michael Zaikin <mz@baking-bad.org>",
"Lev Gorodetskii <pytezos@drsr.io>",
"Igor Sereda <sereda.igor.s@gmail.com>",
"Arthur Breitman",
"Roman Serikov",
]
maintainers = [
"Baking Bad team <hello@baking-bad.org>",
]
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.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",
]
packages = [
{ include = "pytezos", from = "src" },
{ include = "michelson_kernel", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
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" # pinned
ply = ">=3.11"
py-ecc = "7.0.1" # pinned
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"
tqdm = ">=4.62.3"
simple-bson = ">=0.0.3"
[tool.poetry.group.dev.dependencies]
black = "*"
diff-cover = "*"
isort = "*"
mypy = "*"
parameterized = "*"
poetry-plugin-export = "^1.9.0"
PyYAML = "*"
pytest = "*"
pytest-cov = "*"
pytest-xdist = "*"
ruff = "*"
Sphinx = "*"
sphinx-click = "*"
sphinxcontrib-googleanalytics = "*"
sphinx-rtd-theme = "*"
sphinx-sitemap = "*"
types-python-dateutil = "*"
types-PyYAML = "*"
types-requests = "*"
types-setuptools = "*"
types-simplejson = "*"
types-tabulate = "*"
[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 = ['py310', 'py311', 'py312', 'py313']
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 = "py310"
lint.extend-select = ["B", "C", "RET", "SIM"]
[tool.mypy]
python_version = "3.10"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"