Skip to content

Commit

Permalink
Adds setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BradWhittington committed Mar 16, 2011
1 parent 991ff01 commit 84f0835
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions setup.py
@@ -0,0 +1,36 @@
from setuptools import setup, find_packages
import os

DESCRIPTION = "A Django email backend for Mailgun"

LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass

CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]

setup(
name='django-mailgun',
version='0.1',
packages=['django_mailgun'],
author='Bradley Whittington',
author_email='radbrad182@gmail.com',
url='http://github.com/bradwhittington/django-mailgun/',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=['mailgun.py'],
)

0 comments on commit 84f0835

Please sign in to comment.