setup.py 211 B

123456789101112
  1. from distutils.core import setup
  2. setup(
  3. name='RancherOSIntegrationTests',
  4. version='0.1',
  5. packages=[
  6. 'rostest'
  7. ],
  8. license='ASL 2.0',
  9. long_description=open('README.txt').read(),
  10. )