-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 1.79 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "mgwr"
dynamic = ["version"]
authors = [
{ name = "Taylor M. Oshan", email = "tayoshan@gmail.com" },
]
maintainers = [{ name = "PySAL Developers" }]
license = { text = "BSD 3-Clause" }
description = "Multiscale Geographically Weighted Regression"
keywords = ["spatial statistics"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.12"
dependencies = [
"libpysal>=4.12",
"numpy>=2.0",
"scipy>=1.13",
"spglm>=1.1",
"spreg>=1.8",
]
[project.urls]
Home = "https://github.com/pysal/mgwr/"
Repository = "https://github.com/pysal/mgwr"
[project.optional-dependencies]
plus = [
"numba",
]
dev_tests = [
"pre-commit",
"ruff",
"watermark",
"codecov",
"coverage",
"pandas>=2.3",
"pytest",
"pytest-cov",
"pytest-timeout",
]
docs = [
"myst-parser",
"nbsphinx",
"numpydoc",
"pandoc",
"sphinx",
"sphinxcontrib-bibtex",
"sphinxcontrib-napoleon",
"sphinx-bootstrap-theme",
"sphinx-gallery"
]
[tool.setuptools.packages.find]
include = ["mgwr", "mgwr.*"]
########################################################################
#
# Add [coverage, linting, formatting, testing] stuff in subsequent pass
#
########################################################################