forked from jtauber-archive/django-email-confirmation
-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
28 lines (26 loc) · 903 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="django-email-confirmation",
version="0.2",
description="Simple email confirmation for the Django web framework.",
long_description=open("docs/index.txt").read(),
author="James Tauber",
author_email="[email protected]",
url="https://github.com/jtauber/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",
]
)