-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 975 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 975 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
[project]
name = "bivium"
version = "0.1.0"
description = "Open-source alternate history engine — cinematic 3D globe animations from what-if questions"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.135.3",
"google-genai>=1.0.0",
"pydantic-settings>=2.13.1",
"python-dotenv>=1.2.2",
"shapely>=2.1.2",
"uvicorn>=0.43.0",
"uvloop>=0.22.1",
]
[dependency-groups]
dev = [
"arize-phoenix-client>=2.3.0",
"arize-phoenix-otel>=0.15.0",
"pre-commit>=4.5.1",
"pyyaml>=6.0",
"pyright>=1.1.408",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.9",
]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["src/backend/tests"]
[tool.pyright]
typeCheckingMode = "strict"
include = ["src/backend"]
venvPath = "."
venv = ".venv"