-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated config to pyproject.toml using jaraco.develop.migrate-config…
… and ini2toml.
- Loading branch information
Showing
2 changed files
with
65 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,71 @@ | |
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "twine" | ||
authors = [ | ||
{ name = "Donald Stufft and individual contributors", email = "[email protected]" }, | ||
] | ||
description = "Collection of utilities for publishing packages on PyPI" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX", | ||
"Operating System :: POSIX :: BSD", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"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 :: Implementation :: CPython", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"pkginfo >= 1.8.1", | ||
"readme-renderer >= 35.0", | ||
"requests >= 2.20", | ||
"requests-toolbelt >= 0.8.0, != 0.9.0", | ||
"urllib3 >= 1.26.0", | ||
"importlib-metadata >= 3.6", | ||
"keyring >= 15.1", | ||
"rfc3986 >= 1.4.0", | ||
"rich >= 12.0.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.readme] | ||
file = "README.rst" | ||
content-type = "text/x-rst" | ||
|
||
[project.urls] | ||
Homepage = "https://twine.readthedocs.io/" | ||
Source = "https://github.com/pypa/twine/" | ||
Documentation = "https://twine.readthedocs.io/en/latest/" | ||
"Packaging tutorial" = "https://packaging.python.org/tutorials/packaging-projects/" | ||
|
||
[project.entry-points."twine.registered_commands"] | ||
check = "twine.commands.check:main" | ||
upload = "twine.commands.upload:main" | ||
register = "twine.commands.register:main" | ||
|
||
[project.scripts] | ||
twine = "twine.__main__:main" | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"twine", | ||
"twine.commands", | ||
] | ||
include-package-data = true | ||
license-files = ["LICENSE"] | ||
|
||
[tool.setuptools_scm] | ||
|
||
[tool.towncrier] | ||
|