salt/setup.py

35 lines
971 B
Python
Raw Normal View History

2011-02-27 14:31:57 -07:00
#!/usr/bin/python2
'''
The setup script for salt
'''
2011-02-27 14:31:57 -07:00
from distutils.core import setup
setup(name='salt',
2011-03-23 23:50:34 -06:00
version='0.6.9',
2011-02-27 14:31:57 -07: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 10:52:22 -07:00
packages=['salt', 'salt.modules', 'salt.cli'],
2011-02-27 14:31:57 -07:00
scripts=['scripts/salt-master',
2011-03-09 10:52:22 -07:00
'scripts/salt-minion',
2011-03-23 23:50:34 -06:00
'scripts/saltkey',
2011-03-09 10:52:22 -07:00
'scripts/salt'],
2011-03-07 09:16:12 -07:00
data_files=[('/etc/salt',
2011-03-03 10:57:11 -07:00
['conf/master',
'conf/minion',
2011-02-27 14:31:57 -07:00
]),
2011-04-01 23:22:19 -06: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 14:31:57 -07:00
],
)