-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 928 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 928 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pygris"
version = "0.2.1"
authors = [{ name = "Kyle Walker", email = "kyle@walker-data.com" }]
description = "Download and use US Census Bureau TIGER/Line Shapefiles and other data resources in Python"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/walkerke/pygris"
"Bug Tracker" = "https://github.com/walkerke/pygris/issues"
[project.optional-dependencies]
explore = ["mapclassify", "ipyleaflet", "folium"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
exclude = ["site"]
[tool.setuptools.package-data]
"pygris" = ["internals/*.csv"]