1Metadata-Version: 2.1 2Name: setuptools 3Version: 65.5.0 4Summary: Easily download, build, install, upgrade, and uninstall Python packages 5Home-page: https://github.com/pypa/setuptools 6Author: Python Packaging Authority 7Author-email: distutils-sig@python.org 8Project-URL: Documentation, https://setuptools.pypa.io/ 9Project-URL: Changelog, https://setuptools.pypa.io/en/stable/history.html 10Keywords: CPAN PyPI distutils eggs package management 11Classifier: Development Status :: 5 - Production/Stable 12Classifier: Intended Audience :: Developers 13Classifier: License :: OSI Approved :: MIT License 14Classifier: Programming Language :: Python :: 3 15Classifier: Programming Language :: Python :: 3 :: Only 16Classifier: Topic :: Software Development :: Libraries :: Python Modules 17Classifier: Topic :: System :: Archiving :: Packaging 18Classifier: Topic :: System :: Systems Administration 19Classifier: Topic :: Utilities 20Requires-Python: >=3.7 21License-File: LICENSE 22Provides-Extra: certs 23Provides-Extra: docs 24Requires-Dist: sphinx (>=3.5) ; extra == 'docs' 25Requires-Dist: jaraco.packaging (>=9) ; extra == 'docs' 26Requires-Dist: rst.linker (>=1.9) ; extra == 'docs' 27Requires-Dist: furo ; extra == 'docs' 28Requires-Dist: jaraco.tidelift (>=1.4) ; extra == 'docs' 29Requires-Dist: pygments-github-lexers (==0.0.5) ; extra == 'docs' 30Requires-Dist: sphinx-favicon ; extra == 'docs' 31Requires-Dist: sphinx-inline-tabs ; extra == 'docs' 32Requires-Dist: sphinx-reredirects ; extra == 'docs' 33Requires-Dist: sphinxcontrib-towncrier ; extra == 'docs' 34Requires-Dist: sphinx-notfound-page (==0.8.3) ; extra == 'docs' 35Requires-Dist: sphinx-hoverxref (<2) ; extra == 'docs' 36Provides-Extra: ssl 37Provides-Extra: testing 38Requires-Dist: pytest (>=6) ; extra == 'testing' 39Requires-Dist: pytest-checkdocs (>=2.4) ; extra == 'testing' 40Requires-Dist: pytest-flake8 ; extra == 'testing' 41Requires-Dist: flake8 (<5) ; extra == 'testing' 42Requires-Dist: pytest-enabler (>=1.3) ; extra == 'testing' 43Requires-Dist: pytest-perf ; extra == 'testing' 44Requires-Dist: mock ; extra == 'testing' 45Requires-Dist: flake8-2020 ; extra == 'testing' 46Requires-Dist: virtualenv (>=13.0.0) ; extra == 'testing' 47Requires-Dist: wheel ; extra == 'testing' 48Requires-Dist: pip (>=19.1) ; extra == 'testing' 49Requires-Dist: jaraco.envs (>=2.2) ; extra == 'testing' 50Requires-Dist: pytest-xdist ; extra == 'testing' 51Requires-Dist: jaraco.path (>=3.2.0) ; extra == 'testing' 52Requires-Dist: build[virtualenv] ; extra == 'testing' 53Requires-Dist: filelock (>=3.4.0) ; extra == 'testing' 54Requires-Dist: pip-run (>=8.8) ; extra == 'testing' 55Requires-Dist: ini2toml[lite] (>=0.9) ; extra == 'testing' 56Requires-Dist: tomli-w (>=1.0.0) ; extra == 'testing' 57Provides-Extra: testing-integration 58Requires-Dist: pytest ; extra == 'testing-integration' 59Requires-Dist: pytest-xdist ; extra == 'testing-integration' 60Requires-Dist: pytest-enabler ; extra == 'testing-integration' 61Requires-Dist: virtualenv (>=13.0.0) ; extra == 'testing-integration' 62Requires-Dist: tomli ; extra == 'testing-integration' 63Requires-Dist: wheel ; extra == 'testing-integration' 64Requires-Dist: jaraco.path (>=3.2.0) ; extra == 'testing-integration' 65Requires-Dist: jaraco.envs (>=2.2) ; extra == 'testing-integration' 66Requires-Dist: build[virtualenv] ; extra == 'testing-integration' 67Requires-Dist: filelock (>=3.4.0) ; extra == 'testing-integration' 68Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing' 69Requires-Dist: pytest-cov ; (platform_python_implementation != "PyPy") and extra == 'testing' 70Requires-Dist: pytest-mypy (>=0.9.1) ; (platform_python_implementation != "PyPy") and extra == 'testing' 71 72.. image:: https://raw.githubusercontent.com/pypa/setuptools/main/docs/images/banner-640x320.svg 73 :align: center 74 75| 76 77.. image:: https://img.shields.io/pypi/v/setuptools.svg 78 :target: `PyPI link`_ 79 80.. image:: https://img.shields.io/pypi/pyversions/setuptools.svg 81 :target: `PyPI link`_ 82 83.. _PyPI link: https://pypi.org/project/setuptools 84 85.. image:: https://github.com/pypa/setuptools/workflows/tests/badge.svg 86 :target: https://github.com/pypa/setuptools/actions?query=workflow%3A%22tests%22 87 :alt: tests 88 89.. image:: https://img.shields.io/badge/code%20style-black-000000.svg 90 :target: https://github.com/psf/black 91 :alt: Code style: Black 92 93.. image:: https://img.shields.io/readthedocs/setuptools/latest.svg 94 :target: https://setuptools.pypa.io 95 96.. image:: https://img.shields.io/badge/skeleton-2022-informational 97 :target: https://blog.jaraco.com/skeleton 98 99.. image:: https://img.shields.io/codecov/c/github/pypa/setuptools/master.svg?logo=codecov&logoColor=white 100 :target: https://codecov.io/gh/pypa/setuptools 101 102.. image:: https://tidelift.com/badges/github/pypa/setuptools?style=flat 103 :target: https://tidelift.com/subscription/pkg/pypi-setuptools?utm_source=pypi-setuptools&utm_medium=readme 104 105.. image:: https://img.shields.io/discord/803025117553754132 106 :target: https://discord.com/channels/803025117553754132/815945031150993468 107 :alt: Discord 108 109See the `Installation Instructions 110<https://packaging.python.org/installing/>`_ in the Python Packaging 111User's Guide for instructions on installing, upgrading, and uninstalling 112Setuptools. 113 114Questions and comments should be directed to `GitHub Discussions 115<https://github.com/pypa/setuptools/discussions>`_. 116Bug reports and especially tested patches may be 117submitted directly to the `bug tracker 118<https://github.com/pypa/setuptools/issues>`_. 119 120 121Code of Conduct 122=============== 123 124Everyone interacting in the setuptools project's codebases, issue trackers, 125chat rooms, and fora is expected to follow the 126`PSF Code of Conduct <https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md>`_. 127 128 129For Enterprise 130============== 131 132Available as part of the Tidelift Subscription. 133 134Setuptools and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use. 135 136`Learn more <https://tidelift.com/subscription/pkg/pypi-setuptools?utm_source=pypi-setuptools&utm_medium=referral&utm_campaign=github>`_. 137 138 139Security Contact 140================ 141 142To report a security vulnerability, please use the 143`Tidelift security contact <https://tidelift.com/security>`_. 144Tidelift will coordinate the fix and disclosure. 145