From 1b6886a3b5d302b211c780596991b5136649868d Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 19 Dec 2018 10:29:18 -0500 Subject: [PATCH] Small tweaks to package metadata and README This commit makes some small tweaks to the README and the package metadata. First in the package metadata we don't mention python 3.7 as a supported version despite being tested. The other tweak is in the readme where it adds the link to the Aer repo. --- README.md | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c9c982167bad..f5b3be2898ca 100644 --- a/README.md +++ b/README.md @@ -48,3 +48,4 @@ version must be updated according to the following rules: If you want to contribute with one of the Qiskit elements, refer to their individual sites: * [Terra on GitHub](https://github.com/Qiskit/qiskit-terra) +* [Aer on GitHub](https://github.com/Qiskit/qiskit-aer) diff --git a/setup.py b/setup.py index 730d41b1e3ca..e1ffcf05fee1 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ description="Software for developing quantum computing programs", long_description="""Qiskit is a software development kit for writing quantum computing experiments, programs, and applications. Works with - Python 3.5 and 3.6""", + Python 3.5, 3.6, and 3.7""", url="https://github.com/Qiskit/qiskit", author="Qiskit Development Team", author_email="qiskit@us.ibm.com", @@ -33,6 +33,7 @@ "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering", ], keywords="qiskit sdk quantum",