-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (76 loc) · 2.04 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "sgeop"
dynamic = ["version"]
authors = [
{ name = "Martin Fleischmann", email = "[email protected]" },
{ name = "Anastassia Vybornova", email = "[email protected]" },
{ name = "James D. Gaboardi", email = "[email protected]" },
]
license = { text = "BSD 3-Clause" }
description = "Street geometry processing toolkit"
keywords = [""]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.11"
dependencies = [
"esda>=2.6.0",
"geopandas>=1.0.1",
"libpysal>=4.12.1",
"momepy>=0.9.0",
"networkx>=3.3",
"numpy>=1.26.4",
"pandas>=2.2.3",
"scipy>=1.14.1",
"shapely>=2.0.6",
]
[project.urls]
Home = "https://github.com/uscuni/"
Repository = "https://github.com/uscuni/sgeop"
[project.optional-dependencies]
tests = [
"codecov",
"coverage",
"pre-commit",
"pyarrow>=17.0",
"pytest",
"pytest-cov",
"pytest-xdist",
]
[tool.setuptools.packages.find]
include = ["sgeop", "sgeop.*"]
[tool.ruff]
line-length = 88
extend-include = ["*.ipynb"]
lint.select = ["E", "F", "W", "I", "UP", "N", "B", "A", "C4", "SIM", "ARG"]
[tool.ruff.lint.per-file-ignores]
"*__init__.py" = [
"F401", # imported but unused
"F403", # star import; unable to detect undefined names
]
[tool.coverage.run]
source = ["./sgeop"]
[tool.coverage.report]
exclude_lines = [
"if self.debug:",
"pragma: no cover",
"raise NotImplementedError",
"except ModuleNotFoundError:",
"except ImportError",
]
ignore_errors = true
omit = ["sgeop/tests/*"]
[tool.pytest.ini_options]
filterwarnings = [
# this is an internal warning thrown within ``sgeop.geometry.snap_to_targets()``
'ignore:Could not create a connection*:UserWarning',
]