blob: 31ccc8fb8736064a32794df354a72c770b2b610d (
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 distutils2 as building blocks
without causing the other modules to be imported:
import distutils2.version
import distutils2.metadata
import distutils2.pypi.simple
import distutils2.tests.pypi_server
"""
from logging import getLogger
__all__ = ['__version__', 'logger']
__version__ = "1.0a5.dev0"
logger = getLogger('distutils2')
|