From 96db9d00b86e40955a7facc1edbf8f3f4c181e49 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Wed, 9 Oct 2013 19:53:34 +0000 Subject: initial commit --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d72e7e3 --- /dev/null +++ b/setup.py @@ -0,0 +1,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'], +) -- cgit v1.2.3-1-g7c22