diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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'], |
