-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.17 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.2"
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 <gabriel.becedillas@gmail.com>"]
license = "Apache-2.0"
packages = [{include = "basana"}]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = {extras = ["speedups"], version = "^3.10"}
python-dateutil = "^2.9"
# 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]
sphinx = "^6.1.3"
sphinx-rtd-theme = "^1.2.0"
aioresponses = "^0.7"
flake8 = "^7.1"
mypy = "^1.11"
pytest = "^8.3"
pytest-cov = "^5.0"
pytest-mock = "^3.14"
talipp = "^2.4"
types-python-dateutil = "^2.9"
websockets = "^13"
pandas = "^2.2"
statsmodels = "^0.14"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"