-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (33 loc) · 1.13 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
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from codecs import open
setup(
name='django-html-emailer',
version='0.1.0',
description='Utility for sending HTML emails from Django.',
long_description=open("README.md", encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/govtrack/django-html-emailer',
keywords="Django email HTML",
classifiers=[ # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
author='Joshua Tauberer',
author_email='[email protected]',
license='MIT',
install_requires=[
'inlinestyler',
"commonmark>=0.8.0",
"commonmarkextensions>=0.0.1",
],
packages=find_packages(),
package_data={'htmlemailer': ['templates/htmlemailer/*']},
)