forked from geopandas/geodatasets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "geodatasets"
dynamic = ["version"]
authors = [
{name = "Martin Fleischmann", email = "martin@martinfleischmann.net"},
]
maintainers = [
{name = "geodatasets contributors"},
]
license = { text = "BSD 3-Clause" }
description = "Spatial data examples"
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.8"
dependencies = [
"pooch"
]
[project.urls]
Home = "https://github.com/geopandas/geodatasets"
Repository = "https://github.com/geopandas/geodatasets"
[tool.setuptools.packages.find]
include = [
"geodatasets",
"geodatasets.*",
]
[tool.setuptools.package-data]
json = ["json/providers.json"]
[tool.coverage.run]
omit = ["geodatasets/tests/*"]
[tool.pytest.ini_options]
markers = [
"request: fetching data from remote server",
]