Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ The format is based on `Keep a Changelog`_.
^^^^^^^^^^^^^


`0.1rc1`_
^^^^^^^^^


Added
"""""

Expand All @@ -37,5 +41,6 @@ Changed


.. _UNRELEASED: https://github.com/Qiskit/qiskit-ibmq-provider/compare/104d524...HEAD
.. _0.1rc1: https://github.com/Qiskit/qiskit-ibmq-provider/compare/104d524...0.1rc1

.. _Keep a Changelog: http://keepachangelog.com/en/1.0.0/
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include LICENSE.txt README.md
include qiskit/providers/ibmq/VERSION.txt
2 changes: 1 addition & 1 deletion qiskit/providers/ibmq/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7
0.1rc1
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
qiskit-terra>=0.7,<0.8
requests>=2.19
requests-ntlm>=1.1.0
23 changes: 16 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,33 @@
from setuptools import setup

requirements = [
"qiskit-terra>=0.7,<0.8",
#"qiskit-terra>=0.8", # TODO: disabled for developers convenience
"requests>=2.19",
"requests-ntlm>=1.1.0",
]

# Handle version.
VERSION_PATH = os.path.join(os.path.dirname(__file__),
"qiskit", "providers", "aer", "VERSION.txt")
"qiskit", "providers", "ibmq", "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')
with open(README_PATH) as readme_file:
README = readme_file.read()


setup(
name="qiskit-ibmq-provider",
version=VERSION,
description="Qiskit provider for IBMQ network",
long_description="Qiskit provider for accessing the IBMQ network, allowing "
"access to real quantum devices and simulators.",
description="Qiskit provider for IBM Q quantum devices and simulators",
long_description=README,
long_description_content_type='text/markdown',
url="https://github.com/Qiskit/qiskit-ibmq-provider",
author="Qiskit Development Team",
author_email="qiskit@us.ibm.com",
author_email="qiskit@qiskit.org",
license="Apache 2.0",
classifiers=[
"Environment :: Console",
Expand All @@ -45,7 +52,9 @@
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum api ibmq",
packages=['qiskit.providers.ibmq'],
packages=['qiskit.providers.ibmq',
'qiskit.providers.ibmq.api',
'qiskit.providers.ibmq.credentials'],
install_requires=requirements,
include_package_data=True,
python_requires=">=3.5"
Expand Down