Files
django-anymail/setup.py
medmunds 8a0fccdf53 setup: pull long_description and license from README and LICENSE files.
Ensures info on PyPI matches version being distributed there. (Avoids problem where docs on github are ahead of published version on PyPI.)
2013-01-03 10:16:19 -08:00

27 lines
898 B
Python

from setuptools import setup
setup(
name="djrill",
version="0.2.0",
description='Django email backend for Mandrill.',
keywords="django, mailchimp, mandrill, email, email backend",
author="Kenneth Love <kenneth@brack3t.com>, Chris Jones <chris@brack3t.com>",
author_email="kenneth@brack3t.com",
url="https://github.com/brack3t/Djrill/",
license=open('LICENSE').read(),
packages=["djrill"],
zip_safe=False,
install_requires=["requests", "django"],
include_package_data=True,
test_suite="runtests.runtests",
tests_require=["mock"],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
long_description=open('README.rst').read(),
)