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

from distutils.core 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(),
      url='https://github.com/Thibauth/python-pushover',
      author='Thibaut Horel',
      author_email='thibaut+pushover@gmail.com',
      py_modules=['pushover'],
      install_requires=['requests'],
      license='GNU GPLv3'
      )