Metadata-Version: 1.1
Name: packaging
Version: 14.5
Summary: Core utilities for Python packages
Home-page: https://github.com/pypa/packaging
Author: Donald Stufft
Author-email: donald@stufft.io
License: Apache License, Version 2.0
Description: packaging
        =========
        
        Core utilities for Python packages
        
        
        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
        
        Changelog
        =========
        
        
        14.5 - 2014-12-17
        ~~~~~~~~~~~~~~~~~
        
        * Normalize release candidates as ``rc`` instead of ``c``.
        
        * Expose the ``VERSION_PATTERN`` constant, a regular expression matching
          a valid version.
        
        
        14.4 - 2014-12-15
        ~~~~~~~~~~~~~~~~~
        
        * Ensure that versions are normalized before comparison when used in a
          specifier with a less than (``<``) or greater than (``>``) operator.
        
        
        14.3 - 2014-11-19
        ~~~~~~~~~~~~~~~~~
        
        * **BACKWARDS INCOMPATIBLE** Refactor specifier support so that it can sanely
          handle legacy specifiers as well as PEP 440 specifiers.
        
        * **BACKWARDS INCOMPATIBLE** Move the specifier support out of
          ``packaging.version`` into ``packaging.specifiers``.
        
        
        14.2 - 2014-09-10
        ~~~~~~~~~~~~~~~~~
        
        * Add prerelease support to ``Specifier``.
        * Remove the ability to do ``item in Specifier()`` and replace it with
          ``Specifier().contains(item)`` in order to allow flags that signal if a
          prerelease should be accepted or not.
        * Add a method ``Specifier().filter()`` which will take an iterable and returns
          an iterable with items that do not match the specifier filtered out.
        
        
        14.1 - 2014-09-08
        ~~~~~~~~~~~~~~~~~
        
        * Allow ``LegacyVersion`` and ``Version`` to be sorted together.
        * Add ``packaging.version.parse()`` to enable easily parsing a version string
          as either a ``Version`` or a ``LegacyVersion`` depending on it's PEP 440
          validity.
        
        
        14.0 - 2014-09-05
        ~~~~~~~~~~~~~~~~~
        
        * Initial release.
        
        
        .. _`master`: https://github.com/pypa/packaging/
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
