mirror of
https://github.com/rancher/os.git
synced 2025-06-27 07:16:48 +00:00
12 lines
211 B
Python
12 lines
211 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='RancherOSIntegrationTests',
|
|
version='0.1',
|
|
packages=[
|
|
'rostest'
|
|
],
|
|
license='ASL 2.0',
|
|
long_description=open('README.txt').read(),
|
|
)
|