-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·37 lines (34 loc) · 922 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/python2
'''
The setup script for butter
'''
from butter.version import PACKAGE, VERSION, URL
from distutils.core import setup
setup(name=PACKAGE,
version=VERSION,
description='High level execution manager',
author='Thomas S Hatch',
author_email='[email protected]',
url=URL,
packages=[
'butter',
'butter.kvm',
'butter.kvmd',
'butter.vmcache',
],
scripts=[
'scripts/butter',
],
data_files=[('/etc/butter',
[
'conf/kvm',
'conf/kvmd',
'conf/vmcache.conf',
]),
('/etc/rc.d',
[
'init/butter-kvmd',
'init/butter-vmcache',
]),
],
)