| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 | Metadata-Version: 2.1Name: packagingVersion: 23.2Summary: Core utilities for Python packagesAuthor-email: Donald Stufft <donald@stufft.io>Requires-Python: >=3.7Description-Content-Type: text/x-rstClassifier: Development Status :: 5 - Production/StableClassifier: Intended Audience :: DevelopersClassifier: License :: OSI Approved :: Apache Software LicenseClassifier: License :: OSI Approved :: BSD LicenseClassifier: Programming Language :: PythonClassifier: Programming Language :: Python :: 3Classifier: Programming Language :: Python :: 3 :: OnlyClassifier: Programming Language :: Python :: 3.7Classifier: Programming Language :: Python :: 3.8Classifier: Programming Language :: Python :: 3.9Classifier: Programming Language :: Python :: 3.10Classifier: Programming Language :: Python :: 3.11Classifier: Programming Language :: Python :: 3.12Classifier: Programming Language :: Python :: Implementation :: CPythonClassifier: Programming Language :: Python :: Implementation :: PyPyClassifier: Typing :: TypedProject-URL: Documentation, https://packaging.pypa.io/Project-URL: Source, https://github.com/pypa/packagingpackaging=========.. start-introReusable core utilities for various Python Packaging`interoperability specifications <https://packaging.python.org/specifications/>`_.This library provides utilities that implement the interoperabilityspecifications which have clearly one correct behaviour (eg: :pep:`440`)or benefit greatly from having a single shared implementation (eg: :pep:`425`)... end-introThe ``packaging`` project includes the following: version handling, specifiers,markers, requirements, tags, utilities.Documentation-------------The `documentation`_ provides information and the API for the following:- Version Handling- Specifiers- Markers- Requirements- Tags- UtilitiesInstallation------------Use ``pip`` to install these utilities::    pip install packagingThe ``packaging`` library uses calendar-based versioning (``YY.N``).Discussion----------If you run into bugs, you can file them in our `issue tracker`_.You can also join ``#pypa`` on Freenode to ask questions or get involved... _`documentation`: https://packaging.pypa.io/.. _`issue tracker`: https://github.com/pypa/packaging/issuesCode of Conduct---------------Everyone interacting in the packaging project's codebases, issue trackers, chatrooms, and mailing lists is expected to follow the `PSF Code of Conduct`_... _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.mdContributing------------The ``CONTRIBUTING.rst`` file outlines how to contribute to this project aswell as how to report a potential security issue. The documentation for thisproject also covers information about `project development`_ and `security`_... _`project development`: https://packaging.pypa.io/en/latest/development/.. _`security`: https://packaging.pypa.io/en/latest/security/Project History---------------Please review the ``CHANGELOG.rst`` file or the `Changelog documentation`_ forrecent changes and project history... _`Changelog documentation`: https://packaging.pypa.io/en/latest/changelog/
 |