-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
52 lines (49 loc) · 1.76 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
[tool.poetry]
name = "optimalportfolios"
version = "2.1.8"
description = "Simulation and backtesting of optimal portfolios"
license = "LICENSE.txt"
authors = ["Artur Sepp <[email protected]>"]
maintainers = ["Artur Sepp <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ArturSepp/OptimalPortfolios"
documentation = "https://github.com/ArturSepp/OptimalPortfolios"
keywords= ["quantitative", "investing", "portfolio optimization", "systematic strategies", "volatility"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial :: Investment",
]
packages = [ {include = "optimalportfolios"} ]
exclude=["optimalportfolios/examples/figures",
"optimalportfolios/examples/crypto_allocation/data"]
[tool.poetry.urls]
"Issues" = "https://github.com/ArturSepp/OptimalPortfolios/issues"
"Personal website" = "https://artursepp.com"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.26.4"
numba = ">=0.59.0"
scipy = ">=1.12.0"
pandas = ">=2.2.0"
matplotlib = ">=3.8.3"
seaborn = ">=0.13.2"
scikit_learn = ">=1.3.0"
cvxpy = ">=1.3.2"
qis = ">=2.1.1"
pybloqs = ">=1.2.13"
setuptools = ">=69.1.1"
yfinance = ">=0.2.37"
psycopg2 = ">=2.9.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"