-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.06 KB
/
setup.py
File metadata and controls
33 lines (29 loc) · 1.06 KB
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
# pylint: disable=missing-docstring
from setuptools import setup
def get_long_description():
with open("README.rst", "r") as file:
return file.read()
setup(
name="social-auth-kerberos",
version="0.3.0",
description="Kerberos authentication backend for Python Social Auth",
long_description=get_long_description(),
author="Kiwi TCMS",
author_email="info@kiwitcms.org",
url="https://github.com/kiwitcms/python-social-auth-kerberos/",
license="GPLv2",
keywords="social auth, kerberos",
install_requires=["social-auth-core", "gssapi"],
packages=["social_auth_kerberos"],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Internet",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
],
)