You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
Metadata-Version: 2.1Name: packagingVersion: 24.0Summary: 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/packaging
packaging=========
.. start-intro
Reusable 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-intro
The ``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- Utilities
Installation------------
Use ``pip`` to install these utilities::
pip install packaging
The ``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/issues
Code 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.md
Contributing------------
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/
|