forked from dimagi/django-digest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.38 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
#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import unicode_literals
from setuptools import setup
setup(
name='django-digest',
version='1.14',
description=('An implementation of HTTP Digest Authentication for Django.'),
long_description=(
"""
django-digest supplies a middleware (HttpDigestMiddleware) that may installed to protect access
to all URLs, a decorator (@httpdigest) that may be applied to selected view functions, and a
simple class (HttpDigestAuthenticator) that can be used to implement custom authentication
scenarios.
django-digest also supplies a subclass of django.test.Client that is able to perform Digest and
Basic authentication.
"""
),
author='Akoha Inc.',
author_email='[email protected]',
url='http://bitbucket.org/akoha/django-digest/',
packages=['django_digest',
'django_digest.backend',
'django_digest.migrations',
'django_digest.test',
'django_digest.test.methods'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
)