forked from NewAmorend/AlphaGen-Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 982 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
42
43
44
45
46
47
48
49
50
51
[project]
name = "wq-agent"
version = "0.1.0"
description = "WorldQuant Alpha Generation & Backtesting Agent Harness"
requires-python = ">=3.11"
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"aiosqlite>=0.20.0",
"python-dotenv>=1.0.0",
"loguru>=0.7.0",
"pyyaml>=6.0.0",
"pypdf>=4.0.0",
"python-docx>=1.1.0",
"sqlite-vec>=0.1.9",
"networkx>=3.6",
"python-louvain>=0.16",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
]
build = [
"pyinstaller>=6",
]
local-embed = [
"fastembed>=0.3.0",
]
[project.scripts]
wq-agent = "wq_agent.launcher:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/wq_agent"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"