-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
47 lines (42 loc) · 1.16 KB
/
pyproject.toml
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 = "goat-monorepo"
description = "GOAT, an intelligent software for modern web mapping and integrated planning"
version = "2.0.0"
requires-python = ">=3.12"
dependencies = []
authors = [
{ name = "Plan4Better GmbH", email = "info@plan4better.de" },
]
[tool.uv]
package = false
dev-dependencies = [
"pre-commit==4.0.1",
"pyright==1.1.384",
"pytest-asyncio==0.24.0",
"pytest-cov==5.0.0",
"pytest-mock==3.14.0",
"pytest-postgresql==6.1.1",
"pytest-testmon==2.1.1",
"pytest-sugar==1.0.0",
"pytest==8.3.3",
"mypy==1.13.0",
"ruff==0.7.3"
]
[tool.uv.sources]
core = { workspace = true }
geoapi = { workspace = true }
routing = { workspace = true }
accounts = { workspace = true }
[tool.uv.workspace]
members = ["apps/geoapi", "apps/routing", "apps/accounts"]
[tool.mypy]
strict = true
ignore_missing_imports = true
exclude = ["venv", ".venv", "alembic"]
[tool.ruff.lint]
select = ["F", "E", "W", "N", "I", "ANN"]
ignore = ["E501", "ANN101", "ANN102", "ANN401"]
per-file-ignores = { "*/__init__.py" = ["F401"] }
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = ["unit: Unit tests", "integration: Integration tests"]