-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 815 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 815 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
[build-system]
requires = ["setuptools==83.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eventshock-lab"
version = "0.1.0"
description = "EventShock Lab 的可复现实验 API 与确定性市场仿真内核"
readme = "README.md"
requires-python = ">=3.12,<3.13"
license = { file = "LICENSE" }
dependencies = [
"duckdb>=1.5.4,<2",
"fastapi>=0.116,<1",
"httpx>=0.28,<1",
"pydantic>=2.11,<3",
"uvicorn[standard]>=0.35,<1",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28,<1",
"pytest>=8.4,<9",
"pytest-cov>=6.2,<7",
"ruff>=0.12,<1",
]
[tool.setuptools.packages.find]
include = ["backend*"]
[tool.pytest.ini_options]
testpaths = ["tests/backend"]
addopts = "-q"
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]