-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 1.14 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
#!/usr/bin/env python
from setuptools import setup
import os
long_description = open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.rst')).read()
setup(
name = 'templated-emails',
version = "0.6.7",
url = 'https://github.com/philippWassibauer/templated-emails',
author = "Philipp Wassibauer",
author_email = "[email protected]",
license = 'MIT License',
packages = ['templated_emails'],
package_data={
'templated_emails': [
'templates/templated_emails/*.html',
]
},
description = 'Like django-notifications, but just for sending plain emails. Written because it is annoying to fork other apps just to make an email into an HTML email',
long_description=long_description,
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'],
install_requires=[
'pynliner',
'cssutils',
],
)