forked from gbeced/basana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.2 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 = "basana"
version = "1.6.1"
homepage = "https://github.com/gbeced/basana"
repository = "https://github.com/gbeced/basana"
documentation = "https://basana.readthedocs.io/en/latest/"
description = "A Python async and event driven framework for algorithmic trading, with a focus on crypto currencies."
authors = ["Gabriel Becedillas <[email protected]>"]
license = "Apache-2.0"
packages = [{include = "basana"}]
[tool.poetry.dependencies]
python = "^3.8.1"
aiohttp = {extras = ["speedups"], version = "^3.8.6"}
python-dateutil = "^2.8.2"
# Optional dependencies, some of which are included in the below `extras`. They can be opted into by apps.
plotly = {version = "^5.14.1", optional = true}
kaleido = {version = "0.2.1", optional = true}
[tool.poetry.extras]
charts = ["plotly", "kaleido"]
[tool.poetry.group.dev.dependencies]
aioresponses = "^0.7.4"
flake8 = "^7.0.0"
mypy = "^1.9.0"
pytest = "^8.1.1"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
talipp = "^2.1.0"
types-python-dateutil = "^2.8.19.8"
websockets = "^12"
sphinx = "^6.1.3"
sphinx-rtd-theme = "^1.2.0"
pandas = "^2.0"
statsmodels = "^0.14"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"