-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (47 loc) · 2 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.6.0'
author = 'David-Leon Pohl'
author_email = 'pohl@physik.uni-bonn.de'
maintainer = 'Pascal Wolf'
maintainer_email = 'wolf@physik.uni-bonn.de'
# Requirements for core functionality from requirements.txt
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name='online_monitor',
version=version,
description='A generic online monitor showing real-time plots from '
'multiple independent data acquisition systems.',
url='https://github.com/SiLab-Bonn/online_monitor',
license='MIT License',
long_description='',
author=author,
maintainer=maintainer,
author_email=author_email,
maintainer_email=maintainer_email,
install_requires=install_requires,
packages=find_packages(),
# Accept all data files and directories matched by MANIFEST.in or found in
# source control
include_package_data=True,
keywords=['online monitor', 'real time', 'plots'],
entry_points={
'console_scripts': [
# starts the online monitor application; blocking until app exit
'online_monitor = online_monitor.OnlineMonitor:main',
# starts the converters; blocking until CRTL-C
'start_converter = online_monitor.start_converter:main',
# starts the producer simulatiion; blocking until CRTL-C
'start_producer_sim = online_monitor.start_producer_sim:main',
# starts the online monitor application + converters + producer
# simulation defined on the configuration.yaml
'start_online_monitor = online_monitor.start_online_monitor:main',
# Helper function to clean up crashed instances
'stop_online_monitor = online_monitor.stop_online_monitor:main',
# Conveinience function to easially plugin online monitor
'plugin_online_monitor = online_monitor.plugin_online_monitor:main',
]
},
platforms='any'
)