Skip to content

Commit

Permalink
Prepare for v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Pettarin committed May 5, 2019
1 parent 359bcb3 commit 4026e4e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ipapy
**ipapy** is a Python module to work with International Phonetic
Alphabet (IPA) strings.

- Version: 0.0.8
- Date: 2016-06-07
- Version: 0.0.9
- Date: 2019-05-05
- Developer: `Alberto Pettarin <http://www.albertopettarin.it/>`__
- License: the MIT License (MIT)
- Contact: `click here <http://www.albertopettarin.it/contact.html>`__
Expand Down Expand Up @@ -365,3 +365,8 @@ License
-------
**ipapy** is released under the MIT License.
Acknowledgments
---------------
- Bram Vanroy provided a fix to ``setup.py`` for Windows users
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"""

from setuptools import setup, Extension
import io

__author__ = "Alberto Pettarin"
__copyright__ = "Copyright 2016, Alberto Pettarin (www.albertopettarin.it)"
Expand All @@ -25,7 +26,7 @@
author_email="alberto@albertopettarin.it",
url="https://github.com/pettarin/ipapy",
license="MIT License",
long_description=open("README.rst", "r", encoding="utf-8").read(),
long_description=io.open("README.rst", "r", encoding="utf-8").read(),
install_requires=[],
scripts=["bin/ipapy"],
keywords=[
Expand Down

0 comments on commit 4026e4e

Please sign in to comment.