-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
62 lines (55 loc) · 1.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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "golosscripts"
version = "1.0.0"
description = "Scripts for Golos blockchain"
license = "MIT"
authors = ["Vladimir Kamarzin <[email protected]>"]
readme = "README.md"
repository = "https://github.com/bitfag/golos-scripts"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
click = "^7.1.1"
python-golos = "^1.1.0"
# python-golos = {path = "/home/vvk/devel/golos/golos-python"}
bitsharesscripts = "^2"
ccxt = "^1.26.96"
defusedxml = "^0.6.0"
bitshares = "^0.5.1"
graphenelib = "^1.3.2"
[tool.poetry.dev-dependencies]
pre-commit = "^2.2.0"
pytest = "^6"
pytest-asyncio = "^0.11.0"
pytest-cov = "^2.8.1"
pytest-mock = "^3.1.0"
sphinx = "^2.2"
sphinx-autoapi = "^1.3.0"
# used in docs to include markdown files
m2r = "^0.2"
# used in docs to parse pyproject.toml
tomlkit = "^0.6"
[tool.black]
line-length = 120
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''