-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.22 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
[project]
name = "topographic-system"
version = "0.1.0"
description = "A collection of tools for LINZ Topographic Data Management"
authors = [
{ name = "Andrew McMenamin", email = "AMcMenamin@linz.govt.nz" },
{ name = "Tobias Schmidt", email = "tschmidt@linz.govt.nz" },
{ name = "Wentao Kuang", email = "wkuang@linz.govt.nz" },
{ name = "Chris Burlinchon", email = "cburlinchon@linz.govt.nz" },
{ name = "Tāwera Manaena", email = "tmanaena@linz.govt.nz" },
]
requires-python = ">=3.12"
dependencies = [
"topographic-system-qgis",
"topographic-system-validation",
"topographic-system-data-prep",
]
[dependency-groups]
dev = [
"mypy",
"pytest",
"ruff",
"pandas-stubs",
"types-pytz",
"types-setuptools",
"types-geopandas", # Includes types-shapely as dependency
]
[tool.uv.sources]
topographic-system-qgis = { workspace = true }
topographic-system-validation = { workspace = true }
topographic-system-data-prep = { workspace = true }
[tool.uv.workspace]
members = ["packages/qgis", "packages/validation", "packages/data-prep"]
[[tool.mypy.overrides]]
module = ["qgis.core"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["pyarrow.*"]
ignore_missing_imports = true