#!/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'], )