aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-08-16 20:18:25 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2014-08-16 20:27:55 -0400
commit9ba987c22c69a1c29362184ab47b1b1ac0017a47 (patch)
tree7889864f2bdbc06da6afd1fbc0f010a0a582759c /setup.py
parent58d50da0159e11e7f62f04f469e80f7be8b38cb9 (diff)
downloadpython-pushover-9ba987c22c69a1c29362184ab47b1b1ac0017a47.tar.gz
Add AUTHORS.rst update setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 621ef3d..c0d0338 100644
--- a/setup.py
+++ b/setup.py
@@ -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'],