forked from baking-bad/pytezos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.01 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
[tool.poetry]
name = "pytezos"
version = "2.4.4"
description = "Python toolkit for Tezos"
license = "MIT"
authors = ["Michael Zaikin <[email protected]>", "Arthur Breitman", "Roman Serikov"]
readme = "README.md"
repository = "https://github.com/baking-bad/pytezos"
homepage = "https://baking-bad.github.io/pytezos/"
keywords = ['tezos', 'crypto', 'blockchain', 'xtz']
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.6"
pyblake2 = "^1.1.2"
base58 = "^1.0.3"
requests = "^2.21.0"
pendulum = "*"
loguru = "*"
netstruct = "*"
tqdm = "*"
ply = "*"
simplejson = "*"
mnemonic = "*"
fire = "*"
pyyaml = "*"
pysodium = "^0.7.1"
secp256k1 = "^0.13.2"
fastecdsa = "^1.7.1"
[tool.poetry.dev-dependencies]
parameterized = "^0.7.0"
pytest = "^3.0"
pytest-cov = "^2.4"
[tool.poetry.scripts]
pytezos = 'pytezos:cli.main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"