logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

__init__.py (771B)


  1. """distutils.command
  2. Package containing implementation of all the standard Distutils
  3. commands."""
  4. __all__ = ['build',
  5. 'build_py',
  6. 'build_ext',
  7. 'build_clib',
  8. 'build_scripts',
  9. 'clean',
  10. 'install',
  11. 'install_lib',
  12. 'install_headers',
  13. 'install_scripts',
  14. 'install_data',
  15. 'sdist',
  16. 'register',
  17. 'bdist',
  18. 'bdist_dumb',
  19. 'bdist_rpm',
  20. 'check',
  21. 'upload',
  22. # These two are reserved for future use:
  23. #'bdist_sdux',
  24. #'bdist_pkgtool',
  25. # Note:
  26. # bdist_packager is not included because it only provides
  27. # an abstract base class
  28. ]