-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
48 lines (43 loc) · 1.03 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
[tool.poetry]
name = "bitshares_tradehistory_analyzer"
version = "0.1.0"
description = "Trades history analyzer for BitShares-based exchanges"
authors = ["Vladimir Kamarzin <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
bitshares = "^0.5"
"ruamel.yaml" = "^0.17.21"
# Need old mypy for old pandas
numpy = "<1.19"
# Pin pandas to workaround https://github.com/bitphage/bitshares-tradehistory-analyzer/issues/4
pandas = "==0.24.2"
ccgains = { git = "https://github.com/probstj/ccGains.git", rev="bd2ed4a8d5e23147d4cffa7d059e16c211e2cdba" }
click = "^8.1.3"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
pytest = "^7.1.3"
pytest-recording = "^0.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120