diff options
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r-- | setuptools/command/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py new file mode 100644 index 00000000..3429634c --- /dev/null +++ b/setuptools/command/__init__.py @@ -0,0 +1,11 @@ +import distutils.command + +__all__ = ['test', 'depends'] + + +# Make our commands available as though they were part of the distutils + +distutils.command.__path__.extend(__path__) +distutils.command.__all__.extend( + [cmd for cmd in __all__ if cmd not in distutils.command.__all__] +) |