-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
88 lines (76 loc) · 1.84 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
88
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "inequality"
dynamic = ["version"]
authors = [
{ name = "PySAL Developers", email = "pysal-dev@googlegroups.com" },
]
maintainers = [{ name = "PySAL Developers" }]
license = { text = "BSD 3-Clause" }
description = "inequality: Spatial inequality analysis"
keywords = ["spatial statistics", "spatial inequality"]
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.10"
dependencies = [
"libpysal>=4.5",
"matplotlib>=3.6",
"numpy>=1.23",
"scipy>=1.8",
]
[project.urls]
Home = "https://github.com/pysal/inequality/"
Repository = "https://github.com/pysal/inequality"
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
]
docs = [
"nbsphinx",
"numpydoc",
"sphinx",
"sphinxcontrib-bibtex",
"sphinx-gallery",
"sphinx_bootstrap_theme",
]
tests = [
"codecov",
"pytest",
"pytest-cov",
"pytest-xdist",
]
pen = [
"matplotlib",
"pandas",
]
[tool.setuptools.packages.find]
include = ["inequality", "inequality.*"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "N", "B", "A", "C4", "SIM", "ARG"]
exclude = ["inequality/tests/*", "docs/*"]
[tool.ruff.lint.per-file-ignores]
"*__init__.py" = [
"F401", # imported but unused
]
[tool.coverage.run]
source = ["./inequality"]
[tool.coverage.report]
exclude_lines = [
"raise NotImplementedError",
"except ModuleNotFoundError:",
"except ImportError",
]
ignore_errors = true
omit = ["inequality/tests/*", "docs/conf.py"]