summaryrefslogtreecommitdiff
path: root/setuptools/command/__init__.py
blob: a7e3c3da1a414bceea8d22f2869d7b3f87be6c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
import distutils.command

__all__ = []  # XXX 'happy', 'test', 'install_pkg_data'


# 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__]
)