forked from pypa/twine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (53 loc) · 1.73 KB
/
setup.cfg
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
[metadata]
license_file = LICENSE
name = twine
author = Donald Stufft and individual contributors
author_email = [email protected]
description = Collection of utilities for publishing packages on PyPI
long_description = file:README.rst
long_description_content_type = text/x-rst
url = https://twine.readthedocs.io/
project_urls =
Source = https://github.com/pypa/twine/
Documentation = https://twine.readthedocs.io/en/latest/
Packaging tutorial = https://packaging.python.org/tutorials/packaging-projects/
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
[options]
packages =
twine
twine.commands
python_requires = >=3.7
install_requires=
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
include_package_data = True
[options.entry_points]
twine.registered_commands =
check = twine.commands.check:main
upload = twine.commands.upload:main
register = twine.commands.register:main
console_scripts =
twine = twine.__main__:main