summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/__init__.py
blob: 93b611765cc56674d5ef8cfe91a05596dea7d1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""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')