salt/setup.py

39 lines
1.1 KiB
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',
]),
2011-04-02 05:22:19 +00:00
('share/man/man1',
['man/salt-master.1',
'man/saltkey.1',
'man/salt.1',
'man/salt-minion.1',
])
('share/man/man7',
['salt.7',
])
2011-02-27 21:31:57 +00:00
],
)