mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add the setup.py
This commit is contained in:
parent
c7cb7cbb69
commit
0579eca6ef
1 changed files with 24 additions and 0 deletions
24
setup.py
Executable file
24
setup.py
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/python2
|
||||
|
||||
from distutils.core import setup
|
||||
|
||||
setup(name='salt',
|
||||
version='0.1',
|
||||
description='Portable, distrubuted, remote execution system',
|
||||
author='Thomas S Hatch',
|
||||
author_email='thatch45@gmail.com',
|
||||
url='https://github.com/thatch45/salt',
|
||||
packages=['salt'],
|
||||
scripts=['scripts/salt-master',
|
||||
'scripts/salt-minion'],
|
||||
data_files=[('/etc/salt',
|
||||
['conf/master.conf',
|
||||
'conf/minion.conf',
|
||||
]),
|
||||
('/etc/rc.d/',
|
||||
['init/salt-minion',
|
||||
'init/salt-master',
|
||||
]),
|
||||
],
|
||||
|
||||
)
|
Loading…
Add table
Reference in a new issue