CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
1Metadata-Version: 2.32Name: packaging3Version: 24.24Summary: Core utilities for Python packages5Author-email: Donald Stufft <donald@stufft.io>6Requires-Python: >=3.87Description-Content-Type: text/x-rst8Classifier: Development Status :: 5 - Production/Stable9Classifier: Intended Audience :: Developers10Classifier: License :: OSI Approved :: Apache Software License11Classifier: License :: OSI Approved :: BSD License12Classifier: Programming Language :: Python13Classifier: Programming Language :: Python :: 314Classifier: Programming Language :: Python :: 3 :: Only15Classifier: Programming Language :: Python :: 3.816Classifier: Programming Language :: Python :: 3.917Classifier: Programming Language :: Python :: 3.1018Classifier: Programming Language :: Python :: 3.1119Classifier: Programming Language :: Python :: 3.1220Classifier: Programming Language :: Python :: 3.1321Classifier: Programming Language :: Python :: Implementation :: CPython22Classifier: Programming Language :: Python :: Implementation :: PyPy23Classifier: Typing :: Typed24Project-URL: Documentation, https://packaging.pypa.io/25Project-URL: Source, https://github.com/pypa/packaging26 27packaging28=========29 30.. start-intro31 32Reusable core utilities for various Python Packaging33`interoperability specifications <https://packaging.python.org/specifications/>`_.34 35This library provides utilities that implement the interoperability36specifications which have clearly one correct behaviour (eg: :pep:`440`)37or benefit greatly from having a single shared implementation (eg: :pep:`425`).38 39.. end-intro40 41The ``packaging`` project includes the following: version handling, specifiers,42markers, requirements, tags, utilities.43 44Documentation45-------------46 47The `documentation`_ provides information and the API for the following:48 49- Version Handling50- Specifiers51- Markers52- Requirements53- Tags54- Utilities55 56Installation57------------58 59Use ``pip`` to install these utilities::60 61    pip install packaging62 63The ``packaging`` library uses calendar-based versioning (``YY.N``).64 65Discussion66----------67 68If you run into bugs, you can file them in our `issue tracker`_.69 70You can also join ``#pypa`` on Freenode to ask questions or get involved.71 72 73.. _`documentation`: https://packaging.pypa.io/74.. _`issue tracker`: https://github.com/pypa/packaging/issues75 76 77Code of Conduct78---------------79 80Everyone interacting in the packaging project's codebases, issue trackers, chat81rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.82 83.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md84 85Contributing86------------87 88The ``CONTRIBUTING.rst`` file outlines how to contribute to this project as89well as how to report a potential security issue. The documentation for this90project also covers information about `project development`_ and `security`_.91 92.. _`project development`: https://packaging.pypa.io/en/latest/development/93.. _`security`: https://packaging.pypa.io/en/latest/security/94 95Project History96---------------97 98Please review the ``CHANGELOG.rst`` file or the `Changelog documentation`_ for99recent changes and project history.100 101.. _`Changelog documentation`: https://packaging.pypa.io/en/latest/changelog/102 103 
Aluode/PerceptionLabPortable · CoolFace