This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 loc) · 1.67 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
38
39
40
41
42
43
44
45
46
from setuptools import find_packages, setup
import iitgauth
try:
readme = open('README.rst').read()
except IOError:
readme = ''
setup(
name='django-iitg-auth',
version='.'.join(str(i) for i in iitgauth.VERSION),
description='``django-iitg-auth`` is a reusable Django application '
'which provides a custom authencation backend for '
'authenticating with IIT Guwahati webmail servers, a login '
'form and a utility view.',
long_description=readme,
packages=find_packages(exclude=('tests', 'docs', 'example', )),
author='Narendra Choudhary',
author_email='[email protected]',
url='https://github.com/narenchoudhary/django-iitg-auth',
install_requires=['Django>=1.7'],
license='BSD 3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='django library development authentication',
zip_safe=False,
)