-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (65 loc) · 1.8 KB
/
setup.py
File metadata and controls
71 lines (65 loc) · 1.8 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# todo: finish
# todo: create desktop shortcuts
import sys
import versioneer
from distutils.core import setup
if sys.version_info[:2] < (3, 7):
raise Exception("You need Python 3.7+")
requirements = [
"numpy",
"scipy",
"cython",
"sipyco",
"pyqt",
"qt5reactor",
"pyqtgraph",
"twisted",
"zope",
"artiq-comtools",
"pyvisa",
"pyserial",
"h5py",
"hdf5"
]
console_scripts = [
# "artiq_client = artiq.frontend.artiq_client:main",
# todo: add labrad_master
# todo: add labrad_node
]
gui_scripts = [
# "artiq_browser = artiq.frontend.artiq_browser:main",
# todo: add EGGS GUI
]
setup(
name="EGGS_labrad",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Clayton Ho',
author_email="[email protected]",
url="https://github.com/EGGS-Experiment",
description="Experimental Control System for the EGGS Experiment",
long_description=open("README.rst", encoding="utf-8").read(),
license="LGPLv3+",
classifiers="""
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: X11 Applications :: Qt
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering :: Physics
Topic :: System :: Hardware
""".splitlines(),
install_requires=requirements,
extras_require={},
packages=find_packages(),
namespace_packages=[],
include_package_data=True,
ext_modules=[],
entry_points={
"console_scripts": console_scripts,
"gui_scripts": gui_scripts,
}
)