-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 866 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
[project]
name = "gcbmwalltowall"
version = "2.9.1"
description = "gcbmwalltowall"
classifiers = ["Programming Language :: Python :: 3"]
requires-python = ">=3.9"
dependencies = [
"gcbminputloader",
"mojadata",
"openpyxl",
"pandas",
"spatial-inventory-rollback",
"sqlalchemy",
"sqlalchemy-access; platform_system == \"Windows\"",
]
[project.optional-dependencies]
cbm4 = [
"cbm4",
"cbm4-canfire",
"arrow_space",
"cbmspec-cbm3",
"cbm_defaults",
"gdal<=3.11.3",
]
[project.scripts]
walltowall = "gcbmwalltowall.application.walltowall:cli"
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "gcbmwalltowall"
module-root = "."
[tool.uv.build-backend.data]
data = "files"
[dependency-groups]
dev = [
"black>=25.9.0",
"pytest>=8.4.2",
]