-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
38 lines (35 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
if sys.platform.startswith("win"):
pykerberos = 'kerberos-sspi>=0.2'
else:
pykerberos = 'pykerberos>=1.1.10'
setup(
name="django-auth-kerberos",
version="1.2.5",
description="Kerberos authentication backend for Django",
long_description="Kerberos authentication backend for Django",
url="https://github.com/02strich/django-auth-kerberos",
author="Stefan Richter",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=["django", "kerberos", "authentication", "auth"],
packages=find_packages(exclude='tests'),
install_requires=[
'Django>=1.6',
pykerberos,
],
)