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 66
|
[project]
name = "boltons"
version = "25.0.0"
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 :: 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"]
[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"
# A brief checklist for release:
# * tox
# * git commit (if applicable)
# * Bump pyproject.toml version off of -dev
# * git commit -a -m "bump version for x.y.z release"
# * rm -rf dist/*
# * flit build
# * flit publish
# * bump docs/conf.py version
# * git commit
# * git tag -a x.y.z -m "brief summary"
# * write CHANGELOG
# * git commit
# * bump pyproject.toml version onto n+1 dev
# * git commit
# * git push
|