diff options
| -rw-r--r-- | AUTHORS.rst | 6 | ||||
| -rw-r--r-- | CHANGES.rst | 4 | ||||
| -rw-r--r-- | setup.py | 10 |
3 files changed, 14 insertions, 6 deletions
diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..ff143a0 --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,6 @@ +Contributors +------------ + +* Sam Birch <sam.m.birch@gmail.com> +* Crupuk +* Thibaut Horel <thibaut.horel@gmail.com> diff --git a/CHANGES.rst b/CHANGES.rst index 4c2b526..8478d51 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,7 +2,7 @@ Changes ------- 0.2 -+++ +~~~ * Fix bug when using current timestamp * Add a ``pushover`` command line utility @@ -12,6 +12,6 @@ Changes * Switch to ``setuptools`` for easier installation and dependencies handling 0.1 -+++ +~~~ Initial Release @@ -3,12 +3,14 @@ from setuptools import setup setup(name='python-pushover', - version='0.1', - description='Comprehensive implementation of the Pushover API', - long_description=open("README.rst").read() + "\n" + open("CHANGES").read(), + version='0.2', + description="Comprehensive bindings and command line utility for the " + "Pushover notification service", + long_description=open("README.rst").read() + "\n" + + open("AUTHORS.rst").read() + "\n" + open("CHANGES.rst").read(), url='https://github.com/Thibauth/python-pushover', author='Thibaut Horel', - author_email='thibaut+pushover@gmail.com', + author_email='thibaut.horel+pushover@gmail.com', py_modules=['pushover'], entry_points={"console_scripts": ["pushover = pushover:main"]}, install_requires=['requests>=1.0'], |
