-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
37 lines (35 loc) · 1.32 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
from distutils.core import setup
VERSION = '0.4.4'
setup(
name='django-registration-defaults',
version=VERSION,
description="Default templates and settings for James Bennett's"
"django-registration application.",
long_description="This module provides a full set of default templates"
" and settings for ``django-registration`` to ease the process of"
" creating Django apps that require user registration. It depends"
" on ``django-registration``.",
author="Charlie DeTar",
author_email="[email protected]",
url="http://github.com/yourcelf/django-registration-defaults",
license="MIT License",
platforms=["any"],
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",
],
install_requires=[
'Django>=1.5',
'django-registration>=1.0',
],
packages=['registration_defaults'],
package_dir={'registration_defaults': 'registration_defaults'},
package_data={'registration_defaults': ['templates/*/*.html', 'templates/*/*.txt']},
include_package_data=True,
zip_safe=False,
)