-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.17 KB
/
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
#!/usr/bin/env python3
from setuptools import setup
from monitor import __version__
setup(name='recodex-monitor',
version=__version__,
description='Publish ZeroMQ messages through WebSockets',
author='Petr Stefan',
author_email='',
url='https://github.com/ReCodEx/monitor',
license="MIT",
keywords=['ReCodEx', 'messages', 'ZeroMQ', 'WebSockets'],
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
'Operating System :: POSIX :: Linux',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"],
packages=['monitor'],
package_data={'': ['./install/*']},
data_files=[
('/lib/systemd/system', ['monitor/install/recodex-monitor.service']),
('/etc/recodex/monitor', ['monitor/install/config.yml'])
],
entry_points={'console_scripts': ['recodex-monitor = monitor.main:main']}
)