-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (88 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (88 loc) · 2.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aurelis"
version = "0.1.0"
description = "An autonomous quantitative research corporation: departments, desks, agents, meetings, missions, and an auditable institutional record."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "mvnikolov" }]
keywords = [
"multi-agent",
"quantitative-finance",
"research",
"autonomous-agents",
"trading-research",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Information Analysis",
"Typing :: Typed",
]
dependencies = [
"SQLAlchemy>=2.0",
"pydantic>=2.7",
"pydantic-settings>=2.3",
"typer>=0.12",
"rich>=13.7",
]
[project.optional-dependencies]
# The CRYPTO desk's research engine. Not needed until M4; `aurelis doctor`
# reports its absence rather than failing.
engines = ["martex-quant>=1.0.1"]
# Model access. Neither is required: the mock provider runs the whole system
# offline at zero cost, which is what CI uses.
subscription = ["claude-agent-sdk>=0.1"]
api = ["anthropic>=0.40"]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"ruff>=0.5",
"mypy>=1.10",
]
[project.urls]
Homepage = "https://github.com/martex-dev/aurelis"
Repository = "https://github.com/martex-dev/aurelis"
Issues = "https://github.com/martex-dev/aurelis/issues"
[project.scripts]
aurelis = "aurelis.cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["src/aurelis"]
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # import sorting
"UP", # modernize
"B", # bugbear
"SIM", # simplify
"TID", # tidy imports
]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.mypy]
python_version = "3.12"
strict = true
packages = ["aurelis"]
mypy_path = "src"
[[tool.mypy.overrides]]
module = ["claude_agent_sdk.*", "anthropic.*", "martex_quant.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --strict-markers"
markers = [
"requires_provider: needs a real model provider; skipped by default",
]