1999-09-22 12:24:04 -03:00
|
|
|
"""distutils
|
|
|
|
|
2001-04-23 14:13:03 -03:00
|
|
|
The main package for the Python Module Distribution Utilities. Normally
|
1999-09-22 12:24:04 -03:00
|
|
|
used from a setup script as
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup (...)
|
|
|
|
"""
|
|
|
|
|
2015-05-25 23:24:00 -03:00
|
|
|
import sys
|
2021-01-29 17:48:55 -04:00
|
|
|
import warnings
|
2015-05-25 23:24:00 -03:00
|
|
|
|
|
|
|
__version__ = sys.version[:sys.version.index(' ')]
|
2021-01-29 17:48:55 -04:00
|
|
|
|
2021-04-16 06:26:40 -03:00
|
|
|
_DEPRECATION_MESSAGE = ("The distutils package is deprecated and slated for "
|
|
|
|
"removal in Python 3.12. Use setuptools or check "
|
|
|
|
"PEP 632 for potential alternatives")
|
|
|
|
warnings.warn(_DEPRECATION_MESSAGE,
|
2021-03-01 22:49:10 -04:00
|
|
|
DeprecationWarning, 2)
|