-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
32 lines (30 loc) · 1.02 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 find_packages, setup
setup(name='django-mailviews',
version='0.6.5',
url='http://github.com/disqus/django-mailviews/',
author='ted kaemming',
author_email='[email protected]',
description='Class-based mail views for Django',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.3',
],
test_suite='mailviews.tests.__main__.__main__',
zip_safe=False,
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License 2.0',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
]
)