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
|
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0"]
[project]
name = "python-didl-lite"
license = "Apache-2.0"
license-files = ["LICENSE.txt"]
description = "DIDL-Lite (Digital Item Declaration Language) tools for Python"
readme = "README.rst"
authors = [{ name = "Steven Looman", email = "steven.looman@gmail.com" }]
keywords = [
"DIDL",
"DIDL-lite"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10"
dependencies = [
"defusedxml>=0.6.0",
]
dynamic = ["version"]
[project.urls]
"GitHub: repo" = "https://github.com/StevenLooman/python-didl-lite"
[project.optional-dependencies]
test = [
"pytest==9.0.2",
]
[tool.setuptools]
packages = ["didl_lite"]
[tool.setuptools.dynamic]
version = { attr = "didl_lite.__version__" }
[tool.setuptools.package-data]
didl_lite = ["py.typed"]
[tool.flake8]
max-line-length = 99
[tool.mypy]
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
|