From 094b36c5f28c51c84fd088eb0e4ff57ff4df9d60 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 28 Feb 2012 15:42:57 -0800 Subject: [PATCH] setup.py --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/setup.py b/setup.py index e69de29..5e8e68a 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup + +setup( + name="djrill", + version="0.1.0", + description='', + long_description='', + keywords="django, mailchimp, mandrill, email, email backend", + author="Kenneth Love , Chris Jones ", + author_email="kenneth@brack3t.com", + url="https://github.com/brack3t/Djrill/", + license="BSD", + packages=["djrill"], + zip_safe=False, + install_requires=["requests", "django"], + include_package_data=True, + classifiers=[ + "Programming Language :: Python", + "Topic :: Software Development :: Libraries :: Python Modules", + "Framework :: Django", + "Environment :: Web Environment", + ], +)