forked from bitphage/golos-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (53 loc) · 1.13 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
[tool.poetry]
name = "golos-lib-python"
version = "0.9.21"
description = "Python library for Golos blockchain"
authors = ["Vladimir Kamarzin <[email protected]>"]
license = "MIT"
repository = "https://github.com/golos-blockchain/lib-python"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable"
]
packages = [
{ include = "golosbase" },
{ include = "golos" },
]
[tool.poetry.dependencies]
appdirs = "^1.4.4"
python = "^3.6.1"
funcy = "^1.14"
langdetect = "^1.0.8"
scrypt = "^0.8.13"
toolz = "^0.10.0"
websocket-client = "^0.56"
ecdsa = "^0.13"
voluptuous = "^0.11.7"
certifi = "^2020.4.5"
prettytable = "^0.7.2"
pylibscrypt = "^1.8.0"
ujson = "^2.0.3"
urllib3 = "^1.25.9"
w3lib = "^1.21.0"
pycryptodome = "^3.9.7"
[tool.poetry.dev-dependencies]
pre-commit = "^2.2.0"
pytest = "^5.4.1"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \venv
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"