summaryrefslogtreecommitdiff
path: root/setuptools/command/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r--setuptools/command/__init__.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py
deleted file mode 100644
index 3429634..0000000
--- a/setuptools/command/__init__.py
+++ /dev/null
@@ -1,11 +0,0 @@
-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__]
-)