forked from zhinst/zhinst-qcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (50 loc) · 1.62 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
52
53
54
55
56
57
# Copyright (C) 2020 Zurich Instruments
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE file for details.
import os
import setuptools
requirements = [
"numpy>=1.13",
"setuptools>=40.1.0",
"zhinst>=20.01",
"zhinst-toolkit>=0.1.2",
"qcodes>=0.14.0",
"attrs",
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="zhinst-qcodes",
description="Zurich Instruents drivers for QCoDeS",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zhinst/zhinst-qcodes",
author="Zurich Instruments",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
],
keywords="zhinst sdk quantum qcodes",
packages=setuptools.find_namespace_packages(
exclude=["test*"], include=["zhinst.*"]
),
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=requirements,
include_package_data=True,
python_requires=">=3.6",
zip_safe=False,
)