forked from brosner/django-email-confirmation
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 908 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 908 Bytes
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
from setuptools import setup, find_packages
setup(
name='django-email-confirmation',
version='0.2.dev4',
description='Simple e-mail confirmation for the Django web framework.',
long_description=open('docs/index.txt').read(),
author='James Tauber',
author_email='jtauber@jtauber.com',
url='http://code.google.com/p/django-email-confirmation/',
packages=find_packages(exclude=['devproject.devtest', 'devproject']),
package_data = {
'emailconfirmation': [
'templates/emailconfirmation/*.txt'
],
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)