forked from mahmoud/boltons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) 路 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) 路 1.78 KB
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
[project]
name = "boltons"
dynamic = ["version"]
description = "When they're not builtins, they're boltons."
readme = "README.md"
authors = [{ name = "Mahmoud Hashemi", email = "mahmoud@hatnote.com" }]
classifiers = [
# See: https://pypi.python.org/pypi?:action=list_classifiers
"Topic :: Utilities",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
# List of python versions and their support status:
# https://en.wikipedia.org/wiki/CPython#Version_history
"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 :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.7"
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/mahmoud/boltons"
[tool.flit.sdist]
include = ["doc/", "tests/", "CHANGELOG.md", "tox.ini"]
exclude = ["doc/_build"]
[dependency-groups]
dev = [
"pytest>=7,<8; python_version < '3.8'",
"pytest>=8; python_version >= '3.8'",
]
[tool.pytest.ini_options]
doctest_optionflags = [
"ALLOW_UNICODE",
"ELLIPSIS",
"IGNORE_EXCEPTION_DETAIL",
"NORMALIZE_WHITESPACE",
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"