Aluode/PerceptionLabPortable
0
1"""distutils.command2 3Package containing implementation of all the standard Distutils4commands."""5 6__all__ = [7 'build',8 'build_py',9 'build_ext',10 'build_clib',11 'build_scripts',12 'clean',13 'install',14 'install_lib',15 'install_headers',16 'install_scripts',17 'install_data',18 'sdist',19 'bdist',20 'bdist_dumb',21 'bdist_rpm',22 'check',23]24 