aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 6481bbd7bad29259fd46cff959e1aa805bc965f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python

from setuptools import setup

setup(name='python-pushover',
      version='0.3',
      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'],
      entry_points={"console_scripts": ["pushover = pushover:main"]},
      install_requires=['requests>=1.0'],
      use_2to3=True,
      license='GNU GPLv3'
      )