-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (45 loc) · 1.21 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
[project]
name = "edr-pydantic"
description = "Pydantic models for OGC Environmental Data (EDR) API"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "KNMI Data Platform Team", email = "opendata@knmi.nl"},
]
keywords = ["EDR", "Pydantic"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
]
version = "0.5.0"
dependencies = ["pydantic>=2.3,<3"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
dev = ["pre-commit"]
[project.urls]
Source = "https://github.com/knmi/edr-pydantic"
[build-system]
requires = ["flit>=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "edr_pydantic"
[tool.flit.sdist]
exclude = [
"test/",
".github/",
]
[tool.mypy]
plugins = [
"pydantic.mypy"
]
[tool.pydantic-mypy]
warn_untyped_fields = true