Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: b613a3d4587bd93ea66ed0516372b0b7cd9450eb authored by Georg Brandl on 01 May 2012, 07:57:34 UTC
Disable test_13183 temporarily on Windows for 3.3a3 release.
Tip revision: b613a3d
__init__.py
"""Support for packaging, distribution and installation of Python projects.

Third-party tools can use parts of packaging as building blocks
without causing the other modules to be imported:

    import packaging.version
    import packaging.metadata
    import packaging.pypi.simple
    import packaging.tests.pypi_server
"""

from logging import getLogger

__all__ = ['__version__', 'logger']

__version__ = "1.0a3"
logger = getLogger('packaging')
back to top