-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
63 lines (53 loc) · 1.68 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
[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.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.9"
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 = 100
[tool.isort]
profile = "black"