mirror of https://github.com/python/cpython
18 lines
450 B
Python
18 lines
450 B
Python
"""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')
|