-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 994 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
27
28
29
30
31
32
33
34
35
36
"""
Installs the qmachine package
"""
from setuptools import setup, find_packages
from pathlib import Path
import versioneer
readme_file_path = Path(__file__).absolute().parent / "README.md"
required_packages = ['qcodes',
'qm-qua']
package_data = {"qmachine": ["conf/telemetry.ini"] }
setup(
name="qmachine",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires=">=3.7",
install_requires=required_packages,
author= "Rasmus Bjerregaard Christensen",
author_email="[email protected]",
description="tools for QMachine",
long_description=readme_file_path.open().read(),
long_description_content_type="text/markdown",
license="",
package_data=package_data,
packages=find_packages(exclude=["*.tests", "*.tests.*"]),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
],
)