forked from MeeGoIntegration/python-boss-skynet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 836 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
from setuptools import setup
from setuptools import find_packages
setup(name='python-boss-skynet',
version='0.5.0',
description='SkyNET for BOSS',
author='David Greaves',
author_email='david@dgreaves.com',
url='http://meego.gitorious.org/meego-infrastructure-tools/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'])
]
)