-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 1.6 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "optimind"
version = "0.1.0"
description = "AI-enhanced options trading system for Optionetics-style delta-neutral strategies"
requires-python = ">=3.12"
dependencies = [
# Broker
"ib_async>=1.0.1",
# Data / Analytics
"pandas>=2.2",
"numpy>=1.26",
"scipy>=1.13",
"py_vollib>=1.0.1",
# DB / ORM
"sqlalchemy>=2.0",
"alembic>=1.13",
"aiosqlite>=0.20",
# Config / Validation
"pydantic>=2.7",
"pydantic-settings>=2.3",
"python-dotenv>=1.0",
"pyyaml>=6.0",
# AI
"anthropic>=0.40",
"jinja2>=3.1",
# MCP
"mcp>=1.0",
# CLI
"typer>=0.12",
"rich>=13.0",
# Scheduling
"apscheduler>=3.10",
"exchange-calendars>=4.5",
# Logging
"structlog>=24.0",
# HTTP (Tradier Phase 4)
"httpx>=0.27",
# Dashboard
"streamlit>=1.35",
"plotly>=5.22",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"hypothesis>=6.100",
"ruff>=0.4",
"mypy>=1.10",
"types-pyyaml",
"pandas-stubs",
]
[project.scripts]
optimind = "optimind.cli.main:app"
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "ANN"]
ignore = ["ANN101", "ANN102"]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --cov=optimind --cov-report=term-missing"
[tool.coverage.run]
omit = ["tests/*", "optimind/dashboard/*"]