-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (52 loc) · 1.17 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
[project]
name = "hypertrade"
version = "0.1.0"
description = "Agent-first crypto trading research and execution harness."
requires-python = ">=3.12"
dependencies = [
"alembic>=1.17.0",
"backtrader>=1.9.78",
"fastapi>=0.122.0",
"httpx>=0.28.0",
"itsdangerous>=2.2.0",
"langgraph>=1.0.0",
"openai>=2.0.0",
"psycopg[binary]>=3.2.0",
"pydantic-settings>=2.8.0",
"python-multipart>=0.0.20",
"rich>=13.9.0",
"sqlalchemy>=2.0.36",
"uvicorn[standard]>=0.34.0",
"websockets>=15.0.0",
"yfinance>=0.2.48",
]
[project.scripts]
hypertrade = "hypertrade.cli:entrypoint"
ht = "hypertrade.cli:entrypoint"
[dependency-groups]
dev = [
"mypy>=1.14.0",
"pytest>=8.3.0",
"pytest-cov>=6.0.0",
"ruff>=0.9.0",
]
[tool.uv]
package = true
[tool.setuptools.packages.find]
where = ["backend/src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["backend/src"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "C4", "SIM"]
[tool.mypy]
python_version = "3.12"
strict = true
plugins = ["pydantic.mypy"]
mypy_path = ["backend/src"]
[[tool.mypy.overrides]]
module = "yfinance"
ignore_missing_imports = true