-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
43 lines (36 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
33
34
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
DESCRIPTION = 'Send emails using Django template system'
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
VERSION = '2.6.5'
VERSION = os.environ.get('MAIL_TEMPLATED_VERSION', VERSION)
setup(
name='django-mail-templated',
version=VERSION,
packages=find_packages(),
include_package_data=True,
author='Artem Rizhov',
author_email='artem.rizhov@gmail.com',
url='https://github.com/artemrizhov/django-mail-templated',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
test_suite='mail_templated.test_utils.run.run_tests',
)