-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 815 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
#!/usr/bin/python
import os
from setuptools import setup
templates = []
for file in os.listdir('src/templates'):
templates.append('src/templates/%s' % file)
setup(
name='tina',
version='0.0.1',
description='Resource manager and platform orchestrator',
long_description='Resource manager and virtualization platform orchestrator',
author='Luiz Viana',
author_email='[email protected]',
maintainer='Luiz Viana',
maintainer_email='[email protected]',
url='https://github.com/lviana/tina',
packages=['tina'],
package_dir={'tina': 'src/lib'},
license='Apache',
data_files=[('/usr/bin', ['src/bin/tinad']),
('/usr/bin', ['src/bin/tina']),
('/usr/share/tina', templates),
('/etc/tina', ['src/config/tina.conf'])]
)