-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.4 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
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "investment-funnel"
version = "0.0.0"
description = "Open-source testing and benchmarking plaform for asset allocation."
authors = [{name="Petr Vanek", email="[email protected]"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"dash-bootstrap-components>=1.6.0",
"dash>=2.18.2",
"pandas>=2.2.3",
"plotly>=5.24.1",
"numpy>=2.2.1",
"networkx>=3.4.2",
"python-dateutil>=2.9.0.post0",
"scipy>=1.14.1",
"scikit-learn>=1.5.2",
"matplotlib>=3.9.3",
"pyarrow>=18.1.0",
"yfinance>=0.2.51",
"loguru>=0.7.2",
"gunicorn>=23.0.0",
"cvxpy-base>=1.6.0",
"clarabel>=0.9.0",
"python-dotenv>=1.0.1",
"tqdm>=4.67.1",
"flask>=3.0.3",
"requests>=2.32.3",
"pydantic-settings>=2.6.1",
]
[project.urls]
repository = "https://github.com/VanekPetr/investment-funnel"
homepage = "https://investment-funnel.algostrata.com"
[dependency-groups]
dev = [
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"pre-commit>=4.0.1",
"ecos>=2.0.14",
]
[tool.ruff]
select = ["E", "F", "I"]
line-length = 120
target-version = "py310"
exclude = [
"*__init__.py"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["funnel"]
[tool.deptry.per_rule_ignores]
DEP001 = ["gams"]
DEP002 = ["clarabel","pyarrow","cvxpy-base","gunicorn"]
[project.scripts]
funnel = "funnel.app:main"