-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 945 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (33 loc) · 945 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "ai-portfolio"
version = "0.1.0"
description = "AI-driven portfolio optimization and backtesting system for S&P 500 equities"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
[project.scripts]
portfolio = "src.cli:main"
[project.optional-dependencies]
wrds = ["wrds>=3.2"]
tuning = ["lightgbm>=4.6,<5", "optuna>=4.9", "xgboost>=3.0,<4"]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short --basetemp=.pytest_candidates"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
warn_return_any = false