forked from ErwinJunge/django-email-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.16 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
from setuptools import setup, find_packages
setup(
name='django-email-log',
version='0.1.0.post1',
author='Trey Hunner',
author_email='[email protected]',
description='Django email backend that logs all emails',
long_description='\n\n'.join((
open('README.rst').read(),
open('CHANGES.rst').read(),
)),
url='https://github.com/treyhunner/django-email-log',
license='LICENSE',
packages=find_packages(),
install_requires=['Django >= 1.4.2'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Framework :: Django',
],
tests_require=['Django >= 1.4.2'],
include_package_data=True,
test_suite='runtests.runtests',
)