-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (76 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["xsdata_attrs*"]
[project]
name = "xsdata_attrs"
description = "xsdata attrs plugin"
authors = [{name = "Christodoulos Tsoulloftas", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Code Generators",
"Topic :: Text Processing :: Markup :: XML",
]
keywords = ["xsd", "wsdl", "schema", "dtd", "binding", "xml", "json", "dataclasses", "generator", "cli", "attrs"]
requires-python = ">=3.8"
dependencies = [
"attrs>=19.2.0",
"xsdata>=24.5",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/tefra/xsdata-attrs"
Source = "https://github.com/tefra/xsdata-attrs"
Documentation = "https://xsdata-attrs.readthedocs.io/"
Changelog = "https://xsdata-attrs.readthedocs.io/en/latest/changelog/"
[project.entry-points]
"xsdata.plugins.cli" = {xsdata_attrs = "xsdata_attrs.hooks.cli"}
[project.entry-points."xsdata.plugins.class_types"]
xsdata_attrs = "xsdata_attrs.hooks.class_type"
[project.optional-dependencies]
cli = ["xsdata[cli]>=23.5"]
docs = [
"mkdocs",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-minify-plugin",
"mkdocstrings[python]",
"markdown-exec[ansi]",
"pymdownx-superfence-filter-lines",
]
lxml = ["lxml>=4.5.0"]
soap = ["requests"]
test = [
"codecov",
"lxml",
"pre-commit",
"pytest",
"pytest-cov",
]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "xsdata_attrs.__version__"}
[tool.doc8]
max-line-length = 88
[tool.pytest.ini_options]
addopts = "--color=yes"