-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.15 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
[project]
name = "koquant"
version = "0.1.0"
description = "Korean stock market quant trading MVP with paper trading safety rails."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cryptography>=42.0.0",
"fastapi>=0.115.0",
"httpx>=0.27.0",
"pydantic>=2.8.0",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.2",
"uvicorn[standard]>=0.30.0",
"websockets>=14.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.0",
]
research = [
"finance-datareader>=0.9.90",
"pandas>=2.2.0",
"pykrx>=1.0.48",
]
[project.scripts]
koquant = "trader.desktop:main"
trader = "trader.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/trader"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: tests that touch external or long-running services",
"replay: deterministic market replay tests",
]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["B008"]