-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for Cloud authentication support (#39)
* black related enhancements (format missing file, add badge) * prepare public interface and test cases for Cloud auth * remove unused import to fix pylint error * fix broken test case Co-authored-by: Rathish Cholarajan <[email protected]>
- Loading branch information
1 parent
bc8632f
commit b3fbca7
Showing
12 changed files
with
96 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ numpy>=1.13 | |
urllib3>=1.21.1 | ||
python-dateutil>=2.8.0 | ||
websocket-client>=1.0.1 | ||
typing-extensions>=4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,18 +25,19 @@ | |
"numpy>=1.13", | ||
"urllib3>=1.21.1", | ||
"python-dateutil>=2.8.0", | ||
"websocket-client>=1.0.1" | ||
"websocket-client>=1.0.1", | ||
"typing-extensions>=4.0.0", # remove when support for Python 3.7 is dropped (use "from typing import" instead) | ||
] | ||
|
||
# Handle version. | ||
VERSION_PATH = os.path.join(os.path.dirname(__file__), | ||
"qiskit_ibm_runtime", "VERSION.txt") | ||
VERSION_PATH = os.path.join( | ||
os.path.dirname(__file__), "qiskit_ibm_runtime", "VERSION.txt" | ||
) | ||
with open(VERSION_PATH, "r") as version_file: | ||
VERSION = version_file.read().strip() | ||
|
||
# Read long description from README. | ||
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), | ||
'README.md') | ||
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md") | ||
with open(README_PATH) as readme_file: | ||
README = readme_file.read() | ||
|
||
|
@@ -45,9 +46,9 @@ | |
name="qiskit-ibm-runtime", | ||
version=VERSION, | ||
description="Qiskit IBM Runtime service for accessing the quantum devices and " | ||
"simulators at IBM", | ||
"simulators at IBM", | ||
long_description=README, | ||
long_description_content_type='text/markdown', | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Qiskit/qiskit-ibm-runtime", | ||
author="Qiskit Development Team", | ||
author_email="[email protected]", | ||
|
@@ -67,16 +68,24 @@ | |
"Topic :: Scientific/Engineering", | ||
], | ||
keywords="qiskit sdk quantum api runtime ibm", | ||
packages=setuptools.find_packages(exclude=['test*']), | ||
packages=setuptools.find_packages(exclude=["test*"]), | ||
install_requires=REQUIREMENTS, | ||
include_package_data=True, | ||
python_requires=">=3.7", | ||
zip_safe=False, | ||
extras_require={'visualization': ['matplotlib>=2.1', 'ipywidgets>=7.3.0', | ||
"seaborn>=0.9.0", "plotly>=4.4", | ||
"ipyvuetify>=1.1", "pyperclip>=1.7", | ||
"ipython>=5.0.0", "traitlets!=5.0.5", | ||
"ipyvue>=1.4.1"]}, | ||
extras_require={ | ||
"visualization": [ | ||
"matplotlib>=2.1", | ||
"ipywidgets>=7.3.0", | ||
"seaborn>=0.9.0", | ||
"plotly>=4.4", | ||
"ipyvuetify>=1.1", | ||
"pyperclip>=1.7", | ||
"ipython>=5.0.0", | ||
"traitlets!=5.0.5", | ||
"ipyvue>=1.4.1", | ||
] | ||
}, | ||
project_urls={ | ||
"Bug Tracker": "https://github.com/Qiskit/qiskit-ibm-runtime/issues", | ||
"Documentation": "https://qiskit.org/documentation/", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.