-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (92 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
106 lines (92 loc) · 2.26 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "access"
dynamic = ["version"]
authors = [
{ name = "James Saxon" },
]
maintainers = [
{ name = "Julia Koschinsky", email = "jkoschinsky@uchicago.edu" },
{ name = "James D. Gaboardi", email = "jgaboardi@gmail.com" },
{ name = "PySAL Developers" },
{ name = "access contributors" },
]
license = { text = "BSD 3-Clause" }
description = "Calculate spatial accessibility metrics."
keywords = [
"spatial", "statistics", "access"
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.11"
dependencies = [
"geopandas>=1.0.1",
"numpy>=1.26.0",
"pandas>=2.1.0",
"scipy>=1.14.1",
]
[project.urls]
Home = "https://pysal.org/access/"
Repository = "https://github.com/pysal/access"
[project.optional-dependencies]
tests = [
"codecov",
"coverage",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"ruff",
]
docs = [
"nbsphinx",
"numpydoc",
"quilt3",
"sphinx",
"sphinxcontrib-napoleon",
"sphinx-gallery",
"sphinxcontrib-bibtex",
"sphinx_bootstrap_theme",
]
notebooks = [
"dask",
"matplotlib",
"requests",
]
all = ["access[tests,docs,notebooks]"]
[tool.setuptools.packages.find]
include = ["access", "access.*"]
[tool.ruff]
line-length = 88
extend-include = ["*.ipynb"]
[tool.ruff.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 = ["./access"]
[tool.coverage.report]
exclude_lines = [
"if self.debug:",
"pragma: no cover",
"raise NotImplementedError",
"except ModuleNotFoundError:",
"except ImportError",
]
ignore_errors = true
omit = ["access/tests/*"]