nginx-krbauth/setup.py

41 lines
1.4 KiB
Python
Raw Permalink Normal View History

2020-02-20 00:28:43 -05:00
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
setup(
name='nginx_krbauth',
2024-10-08 00:26:39 -04:00
version='0.0.4',
2020-02-20 00:28:43 -05:00
py_modules=['nginx_krbauth'],
install_requires=['flask', 'gssapi', 'python-ldap'],
author='quantum',
author_email='quantum2048@gmail.com',
url='https://github.com/quantum5/nginx-krbauth',
description="LDAP + Kerberos authenticator for nginx's auth_request module.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords='ldap kerberos nginx',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
2021-04-25 05:33:59 -04:00
'Programming Language :: Python :: 3.9',
2024-10-08 00:26:39 -04:00
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
2020-02-20 00:28:43 -05:00
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Security',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
],
)