|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = ["setuptools>=77.0"] |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "python-didl-lite" |
| 7 | +license = "Apache-2.0" |
| 8 | +license-files = ["LICENSE.txt"] |
| 9 | +description = "DIDL-Lite (Digital Item Declaration Language) tools for Python" |
| 10 | +readme = "README.rst" |
| 11 | +authors = [{ name = "Steven Looman", email = "steven.looman@gmail.com" }] |
| 12 | +keywords = [ |
| 13 | + "DIDL", |
| 14 | + "DIDL-lite" |
| 15 | +] |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 5 - Production/Stable", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Programming Language :: Python :: 3.13", |
| 24 | + "Programming Language :: Python :: 3.14", |
| 25 | +] |
| 26 | +requires-python = ">=3.10" |
| 27 | +dependencies = [ |
| 28 | + "defusedxml>=0.6.0", |
| 29 | +] |
| 30 | +dynamic = ["version"] |
| 31 | + |
| 32 | +[project.urls] |
| 33 | +"GitHub: repo" = "https://github.com/StevenLooman/python-didl-lite" |
| 34 | + |
| 35 | +[project.optional-dependencies] |
| 36 | +test = [ |
| 37 | + "pytest==9.0.2", |
| 38 | +] |
| 39 | + |
| 40 | +[tool.setuptools] |
| 41 | +packages = ["didl_lite"] |
| 42 | + |
| 43 | +[tool.setuptools.dynamic] |
| 44 | +version = { attr = "didl_lite.__version__" } |
| 45 | + |
| 46 | +[tool.setuptools.package-data] |
| 47 | +didl_lite = ["py.typed"] |
| 48 | + |
| 49 | +[tool.flake8] |
| 50 | +max-line-length = 99 |
| 51 | + |
| 52 | +[tool.mypy] |
| 53 | +check_untyped_defs = true |
| 54 | +disallow_untyped_calls = true |
| 55 | +disallow_untyped_defs = true |
| 56 | +disallow_incomplete_defs = true |
| 57 | +disallow_untyped_decorators = true |
| 58 | +no_implicit_optional = true |
| 59 | +warn_incomplete_stub = true |
| 60 | +warn_redundant_casts = true |
| 61 | +warn_return_any = true |
| 62 | +warn_unused_configs = true |
| 63 | +warn_unused_ignores = true |
0 commit comments