-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "bear"
description = "Built Environment Asset Registry (BEAR)"
readme = "README.md"
dynamic = ["version"]
authors = [
{ name = "Justin Singh-Mohudpur", email = "[email protected]" },
{ name = "Mike Johnson", email = "[email protected]" }
]
requires-python = ">=3.10"
dependencies = [
"geopandas>=1.0.1",
"polars-hash>=0.5.2",
"polars>=1.20.0",
"pyarrow>=19.0.0",
"shapely>=2.0.6",
"polars-u64-idx>=1.20.0",
"pyogrio",
"pyproj>=3.7.0",
"usaddress-scourgify>=0.6.0",
]
[project.urls]
Repository = "https://github.com/owp-spatial/bear"
Issues = "https://github.com/owp-spatial/bear/issues"
[project.scripts]
bear = "bear.cli.entrypoint:cli"
[tool.maturin]
module-name = "bear._plugins"
python-packages = ["bear"]
python-source = "src"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[dependency-groups]
dev = [
"pyarrow-stubs>=17.16",
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"ruff>=0.9.2",
]
cli = [
"prefect>=3.1.13",
"typer>=0.15.1",
]
docs = [
"markdown>=3.7",
"mkdocs-material>=9.6.2",
"mkdocstrings>=0.28.0",
"mkdocstrings-python>=1.14.4",
"pymdown-extensions>=10.14.3",
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = "src"
testpaths = "tests"
[tool.uv]
required-version = ">=0.5.0"
package = true
[tool.ruff]
line-length = 80
indent-width = 4
[tool.ruff.format]
quote-style = "double"