diff options
author | xoviat <xoviat@users.noreply.github.com> | 2017-11-08 16:41:32 -0600 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-25 15:57:07 -0400 |
commit | cd7d6d56a1cf84cafea44f7cf7e357a926821f03 (patch) | |
tree | 751497929ea17cfab861942590197d2b574d7dfd /distutils/__init__.py | |
parent | 5210488f65e41038e5721d31792fae784c39d649 (diff) | |
download | external_python_setuptools-cd7d6d56a1cf84cafea44f7cf7e357a926821f03.tar.gz external_python_setuptools-cd7d6d56a1cf84cafea44f7cf7e357a926821f03.tar.bz2 external_python_setuptools-cd7d6d56a1cf84cafea44f7cf7e357a926821f03.zip |
[maint] move all files into subfolder
Diffstat (limited to 'distutils/__init__.py')
-rw-r--r-- | distutils/__init__.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/distutils/__init__.py b/distutils/__init__.py new file mode 100644 index 00000000..d823d040 --- /dev/null +++ b/distutils/__init__.py @@ -0,0 +1,13 @@ +"""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(' ')] |