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
|
[project]
name = "isodate"
description = "An ISO 8601 date/time/duration parser and formatter"
authors = [{name="Gerhard Weis"}]
# keywords =
license = {file = "LICENSE"}
# license = {text="BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.7"
dynamic = ["version", "readme"]
[project.urls]
Homepage = "https://github.com/gweis/isodate/"
[tool.setuptools.dynamic]
readme = {file=["README.rst", "CHANGES.txt", "TODO.txt"], content-type="text/x-rst"}
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/isodate/version.py"
fallback_version = "0.0.0.dev0"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
# treat all warnings as errors
"error",
# ignore:<regexp>
# e.g.:
# ignore:jsonschema.RefResolver is deprecated as of v4.18.0
]
junit_family = "xunit2"
[tool.coverage.run]
source_pkgs = ["isodate"]
omit = ["tests/"]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
|