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

Commit

Permalink
Merge pull request #7 from manoelmarques/stable-0.1.1
Browse files Browse the repository at this point in the history
New Release 0.1.1
  • Loading branch information
manoelmarques authored Jun 15, 2018
2 parents 7a32ec8 + 42890ec commit 1c0bd74
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ The format is based on `Keep a Changelog`_.
`UNRELEASED`_
=============

`0.1.1`_ - 2018-06-13
=====================

Changed
-------

- Changed short and long descriptions in setup.py.


`0.1.0` - 2018-06-13
=====================
Expand All @@ -29,6 +37,7 @@ Changed
- Updated qiskit minimum version in setup.py.
- Fixed links in readme.me.

.. _UNRELEASED: https://github.com/QISKit/qiskit-acqua/compare/0.1.0...HEAD
.. _UNRELEASED: https://github.com/QISKit/qiskit-acqua/compare/0.1.1...HEAD
.. _0.1.1: https://github.com/QISKit/qiskit-acqua/compare/0.1.0...0.1.1

.. _Keep a Changelog: http://keepachangelog.com/en/1.0.0/
2 changes: 1 addition & 1 deletion qiskit_acqua/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
local_pluggables,
get_pluggable_configuration)

__version__ = '0.1.0'
__version__ = '0.1.1'

__all__ = [ 'get_qconfig',
'set_qconfig',
Expand Down
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@

import setuptools

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

requirements = [
"qiskit>=0.5.4",
Expand All @@ -34,8 +38,8 @@

setuptools.setup(
name='qiskit-acqua',
version="0.1.0", # this should match __init__.__version__
description='QISKit ACQUA library of algorithms',
version="0.1.1", # this should match __init__.__version__
description='QISKit ACQUA: An extensible library of quantum computing algorithms',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/QISKit/qiskit-acqua',
Expand All @@ -54,7 +58,7 @@
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering"
),
keywords=['ibm', 'qiskit', 'sdk', 'quantum', 'acqua'],
keywords='qiskit sdk quantum acqua',
packages=setuptools.find_packages(exclude=['test*']),
install_requires=requirements,
include_package_data=True,
Expand Down

0 comments on commit 1c0bd74

Please sign in to comment.