forked from brogency/django-db-mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (40 loc) · 1.48 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
39
40
41
42
from setuptools import setup, find_packages
from dbmail import get_version
setup(
name='django-db-mailer',
version=get_version(),
description='Django module to easily send emails using '
'django templates stored on database.',
keywords="django db mail email html text tts sms push templates mailer",
long_description=open('README.rst').read(),
author="GoTLiuM InSPiRiT",
author_email='[email protected]',
url='http://github.com/LPgenerator/django-db-mailer/',
packages=find_packages(exclude=['demo']),
package_data={'dbmail': [
'locale/*/LC_MESSAGES/django.*',
'static/dbmail/admin/js/*.js',
'fixtures/*.json',
]},
include_package_data=True,
install_requires=[
'setuptools',
],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)