Skip to content
This repository was archived by the owner on Dec 7, 2021. It is now read-only.

Commit 1c0bd74

Browse files
Merge pull request #7 from manoelmarques/stable-0.1.1
New Release 0.1.1
2 parents 7a32ec8 + 42890ec commit 1c0bd74

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ The format is based on `Keep a Changelog`_.
1818
`UNRELEASED`_
1919
=============
2020

21+
`0.1.1`_ - 2018-06-13
22+
=====================
23+
24+
Changed
25+
-------
26+
27+
- Changed short and long descriptions in setup.py.
28+
2129

2230
`0.1.0` - 2018-06-13
2331
=====================
@@ -29,6 +37,7 @@ Changed
2937
- Updated qiskit minimum version in setup.py.
3038
- Fixed links in readme.me.
3139

32-
.. _UNRELEASED: https://github.com/QISKit/qiskit-acqua/compare/0.1.0...HEAD
40+
.. _UNRELEASED: https://github.com/QISKit/qiskit-acqua/compare/0.1.1...HEAD
41+
.. _0.1.1: https://github.com/QISKit/qiskit-acqua/compare/0.1.0...0.1.1
3342

3443
.. _Keep a Changelog: http://keepachangelog.com/en/1.0.0/

qiskit_acqua/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
local_pluggables,
2929
get_pluggable_configuration)
3030

31-
__version__ = '0.1.0'
31+
__version__ = '0.1.1'
3232

3333
__all__ = [ 'get_qconfig',
3434
'set_qconfig',

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@
1717

1818
import setuptools
1919

20-
with open('README.md', 'r') as fh:
21-
long_description = fh.read()
20+
long_description="""<a href="https://qiskit.org/acqua" rel=nofollow>QISKit ACQUA</a> is an extensible,
21+
modular, open-source library of quantum computing algorithms.
22+
Researchers can experiment with ACQUA algorithms, on near-term quantum devices and simulators,
23+
and can also get involved by contributing new algorithms and algorithm-supporting objects,
24+
such as optimizers and variational forms. QISKit ACQUA is used by QISKit ACQUA Chemistry,
25+
QISKit ACQUA Artificial Intelligence, and QISKit ACQUA Optimization to experiment with real-world applications to quantum computing."""
2226

2327
requirements = [
2428
"qiskit>=0.5.4",
@@ -34,8 +38,8 @@
3438

3539
setuptools.setup(
3640
name='qiskit-acqua',
37-
version="0.1.0", # this should match __init__.__version__
38-
description='QISKit ACQUA library of algorithms',
41+
version="0.1.1", # this should match __init__.__version__
42+
description='QISKit ACQUA: An extensible library of quantum computing algorithms',
3943
long_description=long_description,
4044
long_description_content_type="text/markdown",
4145
url='https://github.com/QISKit/qiskit-acqua',
@@ -54,7 +58,7 @@
5458
"Programming Language :: Python :: 3.6",
5559
"Topic :: Scientific/Engineering"
5660
),
57-
keywords=['ibm', 'qiskit', 'sdk', 'quantum', 'acqua'],
61+
keywords='qiskit sdk quantum acqua',
5862
packages=setuptools.find_packages(exclude=['test*']),
5963
install_requires=requirements,
6064
include_package_data=True,

0 commit comments

Comments
 (0)