salt/setup.py

30 lines
804 B
Python
Raw Normal View History

2011-02-27 21:31:57 +00:00
#!/usr/bin/python2
'''
The setup script for salt
'''
2011-02-27 21:31:57 +00:00
from distutils.core import setup
setup(name='salt',
2011-03-24 05:50:34 +00:00
version='0.6.9',
2011-02-27 21:31:57 +00:00
description='Portable, distrubuted, remote execution system',
author='Thomas S Hatch',
author_email='thatch45@gmail.com',
url='https://github.com/thatch45/salt',
2011-03-09 17:52:22 +00:00
packages=['salt', 'salt.modules', 'salt.cli'],
2011-02-27 21:31:57 +00:00
scripts=['scripts/salt-master',
2011-03-09 17:52:22 +00:00
'scripts/salt-minion',
2011-03-24 05:50:34 +00:00
'scripts/saltkey',
2011-03-09 17:52:22 +00:00
'scripts/salt'],
2011-03-07 16:16:12 +00:00
data_files=[('/etc/salt',
2011-03-03 17:57:11 +00:00
['conf/master',
'conf/minion',
2011-02-27 21:31:57 +00:00
]),
('/etc/rc.d/',
['init/salt-minion',
'init/salt-master',
]),
],
)