-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
41 lines (38 loc) · 1 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
[tool.poetry]
name = "maup"
version = "2.0.2"
description = "The geospatial toolkit for redistricting data"
authors = [
"Metric Geometry and Gerrymandering Group <[email protected]>",
"Max Hully <[email protected]>",
"Max Fan <[email protected]>"
]
readme = "README.md"
license = "MIT"
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
include = ["best-practices.md"]
exclude = ["examples/", "tests/"]
[tool.poetry.dependencies]
python = "^3.9.0,<3.13.0"
numpy = "^1.23.0"
pandas = "^2.1.2"
geopandas = "^0.14.0"
Shapely = "^2.0.1"
tqdm = "^4.61.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
Sphinx = "^4.0.2"
numpydoc = "^1.1.0"
pydata-sphinx-theme = "^0.6.3"
myst-parser = "^0.15.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"