forked from mellow-finance/mellow-strategy-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.52 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 = "mellow_strategy_sdk"
version = "0.1.1"
description = "Framework for creating new Uniswap V3 strategies"
readme = 'README.rst'
documentation = 'https://mellow-strategy-sdk.readthedocs.io/en/main/'
authors = [
"Alex K <[email protected]>",
"Alexander Nikolaev <[email protected]>",
"David Prokhorov <[email protected]>"
]
license = "MIT License"
homepage = 'https://mellow.finance/'
repository = 'https://github.com/mellow-finance/mellow-strategy-sdk'
packages = [
{include = "mellow_sdk"}
]
[tool.poetry.dependencies]
python = "^3.7.13"
kaleido = "0.2.1"
pandas = "~1.3.5"
plotly = "^5.5.0"
PyYAML = "^3.13"
pyarrow = "^6.0.1"
boto3 = "^1.0.0"
polars = "0.13.17"
structlog = "^21.5.0"
python-binance = "^1.0.15"
six = "~1.15.0"
folium = "0.2.1"
arviz = "^0.12.0"
sphinx = {version = "^4", optional = true}
sphinx-rtd-theme = {version="^1.0.0", optional = true}
autodoc = {version="^0.5.0", optional = true}
sphinx-autodocgen = {version="^1.3", optional = true}
sphinxcontrib-napoleon = {version="^0.7", optional = true}
myst-parser = {version="^0.17.0", optional = true}
sphinx-autodoc-typehints = {version="^1.17.0", optional = true}
tqdm = "^4.64.0"
[tool.poetry.dev-dependencies]
parameterized = "^0.8.1"
[tool.poetry.extras]
docs = [
"sphinx", "parameterized", "sphinx-rtd-theme", "autodoc",
"sphinx-autodocgen", "sphinxcontrib-napoleon", "myst-parser",
"sphinx-autodoc-typehints"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"