-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
28 lines (27 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
setup(
name='django-email-html',
version=__import__('email_html').__version__,
description='Application for switching from Django plain-text emails to html emails with 2 bodies: html and plain-text, generated automatically from html',
long_description=open('README.md').read(),
author='ramusus',
author_email='[email protected]',
url='https://github.com/ramusus/django-email-html',
download_url='http://pypi.python.org/pypi/django-email-html',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False, # because we're including media that Django needs
install_requires=[
'beautifulsoup4',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)