]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / distutils / __init__.py
1 """distutils
2
3 The main package for the Python Module Distribution Utilities. Normally
4 used from a setup script as
5
6 from distutils.core import setup
7
8 setup (...)
9 """
10
11 __revision__ = "$Id$"
12
13 # Distutils version
14 #
15 # Updated automatically by the Python release process.
16 #
17 #--start constants--
18 __version__ = "2.7.2"
19 #--end constants--