-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (45 loc) · 1.3 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "robin"
version = "0.1.0"
description = "Robin: a session-native agentic quant research platform for factor discovery, portfolio backtesting, and strategy promotion."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Noah" }
]
keywords = ["quant", "trading", "multi-agent", "backtesting", "research-agent", "factors"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.26",
"pandas>=2.2",
"yfinance>=0.2.60",
]
[project.optional-dependencies]
dl = [
"torch>=2.2",
]
dev = [
"pytest>=8.0",
]
[project.scripts]
robin = "open_quant_agent.cli:main"
open-quant-agent = "open_quant_agent.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/open_quant_agent"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]