-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.51 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (81 loc) · 2.51 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
[build-system]
requires = ["setuptools>=84.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tradearena-benchmark"
version = "0.2.0"
description = "TreLLM: LLM trading audit system with replayable trajectories, risk gates, reproducibility artifacts, and a TradeArena leaderboard."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "TreLLM Contributors" }]
license = "MIT"
keywords = [
"trellm",
"llm-trading",
"trading-audit",
"financial-agents",
"agent-audit",
"risk-management",
"execution-simulation",
"reproducible-research",
"leaderboard",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/weich97/TreLLM-public"
Repository = "https://github.com/weich97/TreLLM-public"
Documentation = "https://github.com/weich97/TreLLM-public/blob/main/docs/getting_started.md"
Issues = "https://github.com/weich97/TreLLM-public/issues"
[project.optional-dependencies]
data = ["pandas>=2.3.3", "yfinance>=1.5.2"]
dev = [
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"matplotlib>=3.10.9",
"pillow>=12.3.0",
"ruff>=0.16.2",
"mypy>=2.3.0",
"hypothesis>=6.165.2",
"jsonschema>=4.26.0",
"cryptography>=50.0.0",
]
# Ed25519 approval signing for the live-session gate; the pipeline runs without
# it (hash binding only) and raises a clear error when a signature is requested.
signing = ["cryptography>=50.0.0"]
embeddings = ["sentence-transformers>=5.7.0"]
ashare = ["akshare>=1.18.83"]
paper-sandbox = []
[project.scripts]
tradearena = "tradearena.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E9", "F", "I", "UP", "B", "C4", "RET", "RUF"]
ignore = [
# Keep the first strictness step focused on maintainability without forcing
# broad behavioral edits or large public-output rewrites.
"B905",
"RUF005",
"RUF007",
"RUF022",
]
[tool.mypy]
files = ["src/tradearena/core", "src/tradearena/evaluation", "src/tradearena/execution", "src/tradearena/tools"]
python_version = "3.10"
check_untyped_defs = true
ignore_missing_imports = true