forked from Thibauth/python-pushover
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 657 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
setup(
name="python-pushover",
version="1.0",
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.horel+pushover@gmail.com",
py_modules=["pushover", "cli"],
entry_points={"console_scripts": ["pushover = cli:main"]},
install_requires=["requests>=1.0"],
license="GNU GPLv3",
)