forked from tradingstrategy-ai/trading-strategy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 1.21 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
[tool.poetry]
name = "capitalgram"
version = "0.1.0"
description = ""
authors = ["Mikko Ohtamaa <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7.2"
eth-utils = "^1.10.0"
dataclasses-json = "^0.5.4"
zstandard = "^0.15.2"
pandas = "^1.3.0"
pyarrow = "^4.0.1"
eth-hash = {extras = ["pycryptodome"], version = "^0.3.1"}
tqdm = "^4.61.2"
plotly = "^5.1.0"
cufflinks = "^0.17.3"
chart-studio = "^1.1.0"
mplfinance = "^0.12.7-alpha.17"
# Cannot use release, because new maplotlib compatibiltiy
# Fixes
# https://github.com/mementum/backtrader/pull/418
backtrader = {git = "https://github.com/mementum/backtrader", rev="e2674b1690f6366e08646d8cfd44af7bb71b3970"}
fastquant = "^0.1.5"
# qstrader = {path = "../code/qstrader", develop = true}
qstrader = {git = "https://github.com/miohtama/qstrader", rev="ee011745531e0cab412bd3a98f65976840821c4f"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
nbsphinx = "^0.8.6"
ipdb = "^0.13.9"
pandoc = "^1.1.0"
sphinx-rtd-theme = "^0.5.2"
sphinx = {git = "https://github.com/miohtama/sphinx.git", rev="c0b0a26bdaf5c1c9e9cdbe7eb68e29b938f5cd0b"}
sphinx-sitemap = "^2.2.0"
coloredlogs = "^15.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"