forked from stefanfoulis/django-class-based-auth-views
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 978 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
29
from setuptools import setup, find_packages
version = __import__('class_based_auth_views').__version__
setup(
name="django-class-based-auth-views",
version=version,
url='http://github.com/stefanfoulis/django-class-based-auth-views',
license='BSD',
platforms=['OS Independent'],
description="A reimplementation of django.contrib.auth.views as class based views.",
long_description=open('README.rst').read(),
author='Stefan Foulis',
author_email='[email protected]',
maintainer='Stefan Foulis',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)