forked from qiskit-community/qiskit-braket-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.46 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
"""Setup file for Qiskit-Braket provider."""
import os
import setuptools
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
version_path = os.path.abspath(
os.path.join(os.path.dirname(__file__), "qiskit_braket_provider", "VERSION.txt")
)
with open(version_path, "r") as fd:
version = fd.read().rstrip()
setuptools.setup(
name="qiskit_braket_provider",
description="Qiskit-Braket provider to execute Qiskit "
"programs on AWS quantum computing "
"hardware devices through Amazon Braket.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="qiskit braket sdk quantum",
packages=setuptools.find_packages(),
install_requires=install_requires,
python_requires=">=3.7",
version=version,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Physics",
],
)