2015-05-06 13:23:16 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='RancherOSIntegrationTests',
|
|
|
|
version='0.1',
|
|
|
|
packages=[
|
2015-11-18 09:27:54 +00:00
|
|
|
'rostest'
|
2015-05-06 13:23:16 +00:00
|
|
|
],
|
|
|
|
license='ASL 2.0',
|
|
|
|
long_description=open('README.txt').read(),
|
|
|
|
)
|