-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 753 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(name='boss-skynet',
version='__VERSION__',
description='SkyNET for BOSS',
author='David Greaves',
author_email='david@dgreaves.com',
url='https://github.com/MeeGoIntegration/python-boss-skynet',
packages=['SkyNET',],
requires=['RuoteAMQP',],
scripts=['scripts/skynet', 'scripts/skynet_exo'],
data_files=[('/usr/share/doc/python-boss-skynet',
['examples/example-check-participant',
'examples/example-notify-participant',
'examples/minimal-participant',
'README','INSTALL']),
('/etc/skynet', ['conf/skynet.conf', 'conf/skynet.env'])
]
)