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

try:
    from setuptools import setup
except ImportError:
    from ez_setup import use_setuptools
    use_setuptools()
    from setuptools import setup

import sys

setup(
    name='askbot-notify',
    version='0.0.1',
    description="Askbot plugin for notifications via phenny",
    author='Alexander Sulfrian',
    author_email='alex@spline.inf.fu-berlin.de',
    url='http://git.spline.inf.fu-berlin.de/askbot-notify/',
    license='GPLv3',
    py_modules=['askbot_notify'],
)