File: __init__.py

package info (click to toggle)
python-setuptools 0.0.1.041214-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 232 kB
  • ctags: 264
  • sloc: python: 931; makefile: 37
file content (11 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
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__]
    )