Skip to content

Commit 9ba987c

Browse files
committed
Add AUTHORS.rst update setup.py
1 parent 58d50da commit 9ba987c

3 files changed

Lines changed: 14 additions & 6 deletions

File tree

AUTHORS.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Contributors
2+
------------
3+
4+
* Sam Birch <sam.m.birch@gmail.com>
5+
* Crupuk
6+
* Thibaut Horel <thibaut.horel@gmail.com>

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changes
22
-------
33

44
0.2
5-
+++
5+
~~~
66

77
* Fix bug when using current timestamp
88
* Add a ``pushover`` command line utility
@@ -12,6 +12,6 @@ Changes
1212
* Switch to ``setuptools`` for easier installation and dependencies handling
1313

1414
0.1
15-
+++
15+
~~~
1616

1717
Initial Release

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
from setuptools import setup
44

55
setup(name='python-pushover',
6-
version='0.1',
7-
description='Comprehensive implementation of the Pushover API',
8-
long_description=open("README.rst").read() + "\n" + open("CHANGES").read(),
6+
version='0.2',
7+
description="Comprehensive bindings and command line utility for the "
8+
"Pushover notification service",
9+
long_description=open("README.rst").read() + "\n"
10+
+ open("AUTHORS.rst").read() + "\n" + open("CHANGES.rst").read(),
911
url='https://github.com/Thibauth/python-pushover',
1012
author='Thibaut Horel',
11-
author_email='thibaut+pushover@gmail.com',
13+
author_email='thibaut.horel+pushover@gmail.com',
1214
py_modules=['pushover'],
1315
entry_points={"console_scripts": ["pushover = pushover:main"]},
1416
install_requires=['requests>=1.0'],

0 commit comments

Comments
 (0)