forked from developmentseed/geojson-pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.37 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
55
56
57
58
59
[project]
name = "geojson-pydantic"
description = "Pydantic data models for the GeoJSON spec."
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "Drew Bollinger", email = "drew@developmentseed.org"},
]
keywords = ["geojson", "Pydantic"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = ["pydantic"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "shapely"]
dev = ["pre-commit"]
[project.urls]
Source = "https://github.com/developmentseed/geojson-pydantic"
[build-system]
requires = ["flit>=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "geojson_pydantic"
[tool.flit.sdist]
exclude = [
"tests/",
"docs/",
".github/",
"CHANGELOG.md",
"CONTRIBUTING.md",
]
[tool.isort]
profile = "black"
known_first_party = ["geojson_pydantic"]
known_third_party = ["pydantic"]
default_section = "THIRDPARTY"
[tool.mypy]
no_strict_optional = true
[tool.pydocstyle]
select = "D1"
match = "(?!test).*.py"