forked from qdev-dk/qdev-wrappers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 805 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='qdev_wrappers',
version='0.1',
description='wrappers for helping to run an experiment with QCoDeS',
url='https://github.com/qdev-dk/qdev-wrappers',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Licence :: MIT Licence',
'Topic :: Scientific/Engineering'
],
license='MIT',
packages=find_packages(),
package_data={'qcodes': ['config/*.json']},
install_requires=[
'matplotlib>=2.0.2',
'pyqtgraph>=0.10.0',
'qcodes>=0.1.3'
],
python_requires='>=3'
)