-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
51 lines (46 loc) · 1.23 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
[tool.poetry]
name = "cryptodatapy"
version = "0.2.8"
description = "Cryptoasset data library"
authors = ["Systamental"]
license = "Apache License 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
matplotlib = ">=3.5.2"
requests = {version = ">=2.28.0", python = ">=3.7"}
coinmetrics-api-client = {version = ">=2022.6.17", python = ">=3.7"}
investpy = ">=1.0.8"
DBnomics = ">=1.2.3"
ccxt = ">=1.91.52"
webdriver-manager = ">=3.8.3"
statsmodels = ">=0.13.2"
prophet = {version = ">=1.1", python = ">=3.7"}
selenium = ">=4.4.3"
numpy = ">=1.23.2"
pandas = ">=1.4.4"
pandas-datareader = ">=0.10.0"
responses = ">=0.21.0"
yfinance = ">=0.2.14"
openpyxl = ">=3.1.2"
xlrd = ">=2.0.1"
fsspec = ">=2024.6.1"
pyarrow = ">=17.0.0"
s3fs = ">=2024.6.1"
tdqm = ">=0.0.1"
[tool.poetry.dev-dependencies]
pytest = ">=7.1.2"
pytest-cov = ">=3.0.0"
jupyter = ">=1.0.0"
black = ">=22.8.0"
isort = ">=5.10.1"
myst-nb = {version = ">=0.16.0", python = ">=3.8, <4.0"}
sphinx-autoapi = ">=1.9.0"
sphinx-rtd-theme = ">=1.0.0"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = ">=0.24.0"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"