-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
36 lines (30 loc) · 953 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pygris"
version = "0.1.6"
authors = [
{ name="Kyle Walker", email="[email protected]" },
]
license = {text = "MIT"}
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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
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"]