-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.19 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
51
52
53
54
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "fio_planet"
dynamic = ["version", "description"]
readme = "README.md"
authors = [{name = "Sean Gillies"}]
maintainers = [
{name = "Planet Developer Relations", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
]
keywords = [
"GeoJSON",
"GIS",
"CLI",
]
requires-python = ">=3.7"
dependencies = [
"click",
"fiona",
"pyparsing>=3.0",
"shapely>=2.0",
]
[tool.flit.sdist]
exclude = [".github/", ".gitignore"]
[project.optional-dependencies]
test = ["pytest-cov"]
docs = ["mkdocs", "mkdocs-material", "mkdocs-click", "mkdocstrings"]
[project.entry-points."fiona.fio_plugins"]
map = "fio_planet.cli:map_cmd"
filter = "fio_planet.cli:filter_cmd"
reduce = "fio_planet.cli:reduce_cmd"
[tool.mypy]
mypy_path = "src"
namespace_packages = true
explicit_package_bases = true
files = "src,tests"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:.*pkg_resources is deprecated as an API",
"ignore:.*module \\'sre_constants\\' is deprecated",
]
doctest_optionflags = "NORMALIZE_WHITESPACE"