-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
72 lines (66 loc) · 2.16 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
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "pydantic-xml"
version = "2.14.1"
description = "pydantic xml extension"
authors = ["Dmitry Pershin <[email protected]>"]
license = "Unlicense"
readme = "README.rst"
homepage = "https://github.com/dapper91/pydantic-xml"
repository = "https://github.com/dapper91/pydantic-xml"
documentation = "https://pydantic-xml.readthedocs.io"
keywords = [
'pydantic', 'xml', 'serialization', 'deserialization', 'lxml',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Markup :: XML",
'Framework :: Pydantic',
"Framework :: Pydantic :: 1",
"Framework :: Pydantic :: 2",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.8"
lxml = {version = ">=4.9.0", optional = true}
pydantic = ">=2.6.0, !=2.10.0b1"
pydantic-core = ">=2.15.0"
furo = {version = "^2022.12.7", optional = true}
Sphinx = {version = "^5.3.0", optional = true}
sphinx-copybutton = {version = "^0.5.1", optional = true}
sphinx_design = {version = "^0.3.0", optional = true}
toml = {version = "^0.10.2", optional = true}
[tool.poetry.extras]
lxml = ['lxml']
docs = ['Sphinx', 'toml', 'sphinx_design', 'furo', 'sphinx-copybutton']
[tool.poetry.dev-dependencies]
lxml-stubs = ">=0.4.0"
mypy = "^1.4.1"
pre-commit = "~3.2.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
xmldiff = "2.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
allow_redefinition = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_decorators = false
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_unused_ignores = true