-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 835 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 835 Bytes
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
from setuptools import setup
setup(name='qcodes-device-annotator',
version='0.1',
use_2to3=False,
maintainer='Jens Hedegaard Nielsen, William H.P. Nielsen',
maintainer_email='j.h.nielsen@nbi.ku.dk',
description='Simple Qt gui for QCoDeS to annotate device images with instrument data',
url='https://github.com/qdev-dk/qcodes-device-annotator',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering'
],
license='MIT',
py_modules=["qcodes_device_annotator"],
install_requires= [
'qcodes>=0.1.3',
'QtPy>=1.2.0',
],
zip_safe=True)