-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.02 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.02 KB
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
from setuptools import setup
setup(name='instrumentserver',
version='0.0.1',
description='TBD',
url='https://github.com/toolsforexperiments/instrumentserver',
author='Wolfgang Pfaff',
author_email='wolfgangpfff@gmail.com',
license='MIT',
packages=['instrumentserver'],
zip_safe=False,
entry_points={
"console_scripts": [
"instrumentserver = instrumentserver.apps:serverScript",
"instrumentserver-detached = instrumentserver.apps:detachedServerScript",
"instrumentserver-client-station = instrumentserver.apps:clientStationScript",
"instrumentserver-param-manager = instrumentserver.apps:parameterManagerScript",
"instrumentserver-listener = instrumentserver.monitoring.listener:startListener",
]},
install_requires = [
'pyzmq',
'qcodes',
'qtpy',
'pyqt5',
'bokeh',
'scipy'
]
)