forked from qiskit-community/qiskit-braket-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (41 loc) · 1.53 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
"""Setup file for Qiskit-Braket provider."""
import os
from typing import Any, Dict, Optional
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.py")
)
version_dict: Optional[Dict[str, Any]] = {}
with open(version_path) as fp:
exec(fp.read(), version_dict)
version = version_dict["__version__"]
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.9",
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
],
)