forked from hasB4K/pydantic-discriminator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 922 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
37
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydantic-discriminator"
version = "0.1.0"
dependencies = ["pydantic>=1.10,<3.0", "packaging"]
requires-python = ">=3.9"
authors = [{ name = "Luca Bonfiglioli", email = "[email protected]" }]
maintainers = [
{ name = "Luca Bonfiglioli", email = "[email protected]" },
]
description = "Pydantic discriminators for polymorphic models"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pydantic", "discriminator", "polymorphism"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
# Optional dependencies
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pytest",
"pytest-cov",
"build",
"deepdiff",
"tox",
"tox-conda",
]
[project.urls]
Repository = "https://github.com/lucabonfiglioli/pydantic-discriminator"