forked from imc-trading/django-gss-spnego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.6 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
47
48
49
50
51
52
import os
import sys
from setuptools import setup
def read(f):
try:
with open(f, 'r') as h:
return h.read()
except IOError:
return ''
install_reqs = [
l for l in read('requirements.txt').splitlines() if not l.startswith('#')
]
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'django_auth_spnego'))
setup(
name='django-auth-spnego2',
version='5.03',
url='https://github.com/alfonsrv/django-auth-spnego',
description='Django Authentication Backend for Single Sign-On via Kerberos SPNEGO',
long_description=read('README.md'),
long_description_content_type="text/markdown",
packages=['django_auth_spnego'],
package_data={'django_auth_spnego': ['./*', 'templates/*']},
author='Brandon Ewing, alfonsrv',
author_email='alfonsrv@protonmail.com',
include_package_data=True,
install_requires=install_reqs,
license='Apache 2.0',
python_requires='>=3.6',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.1',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet :: WWW/HTTP',
],
)