historical/toontown-classic.git/panda/python/Lib/distutils/__init__.py

14 lines
236 B
Python
Raw Normal View History

2024-01-16 17:20:27 +00:00
"""distutils
The main package for the Python Module Distribution Utilities. Normally
used from a setup script as
from distutils.core import setup
setup (...)
"""
import sys
__version__ = sys.version[:sys.version.index(' ')]