forked from Marigold/universal-portfolios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 973 Bytes
/
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
[tool.poetry]
name = "universal-portfolios"
version = "0.4.12"
description = "Collection of algorithms for online portfolio selection"
readme = "README.md"
repository = "https://github.com/Marigold/universal-portfolios"
authors = ["Marigold <[email protected]>"]
packages = [
{ include = "universal" },
]
[tool.poetry.dependencies]
python = ">=3.8"
scipy = "^1.8.1"
matplotlib = "^3.3.1"
pandas-datareader = "^0.10.0"
statsmodels = "^0.13.2"
scikit-learn = "^1.1.1"
seaborn = "^0.10.1"
requests = "^2.24.0"
plotly = "^4.9.0"
pandas = "^1.1.1"
cvxopt = "^1.3.0"
tqdm = "^4.56.2"
urllib3 = "^1.26.6"
Pillow = "^9.2.0"
yfinance = "^0.2.31"
[tool.poetry.group.dev.dependencies]
typing-extensions = ">=4.0.1"
pytest = "^6.2.5"
ipdb = "^0.13.3"
line-profiler = "^3.0.2"
ipykernel = "^5.3.4"
jupyter = "^1.0.0"
nbdime = "^2.1.0"
ruff = "^0.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88