-
-
Notifications
You must be signed in to change notification settings - Fork 545
/
setup.py
105 lines (87 loc) · 3.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import re
from os.path import dirname, join
from setuptools import setup
VERSION_RE = re.compile(r"__version__ = \"([\d\.]+)\"")
LONG_DESCRIPTION = """
Python Social Auth is an easy to setup social authentication/registration
mechanism with support for several frameworks and auth providers.
It implements a common interface to define new authentication
providers from third parties. And to bring support for more frameworks
and ORMs.
"""
def long_description():
try:
return open(join(dirname(__file__), "README.md")).read()
except OSError:
return None
def read_version():
with open("social_core/__init__.py") as file:
version_line = [
line for line in file.readlines() if line.startswith("__version__")
][0]
return VERSION_RE.match(version_line).groups()[0]
def read_requirements(filename):
with open(filename) as file:
return [line for line in file.readlines() if not line.startswith("-")]
def read_tests_requirements(filename):
return read_requirements(f"social_core/tests/{filename}")
requirements = read_requirements("requirements-base.txt")
requirements_saml = read_requirements("requirements-saml.txt")
requirements_azuread = read_requirements("requirements-azuread.txt")
tests_requirements = read_tests_requirements("requirements.txt")
requirements_all = requirements_saml + requirements_azuread
tests_requirements = tests_requirements + requirements_all
setup(
name="social-auth-core",
version=read_version(),
author="Matias Aguirre",
author_email="[email protected]",
description="Python social authentication made simple.",
license="BSD",
keywords="openid, oauth, saml, social auth",
url="https://github.com/python-social-auth/social-core",
packages=[
"social_core",
"social_core.backends",
"social_core.pipeline",
"social_core.tests",
"social_core.tests.actions",
"social_core.tests.backends",
"social_core.tests.backends.data",
],
long_description=long_description() or LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=requirements,
python_requires=">=3.8",
extras_require={
"saml": [requirements_saml],
"azuread": [requirements_azuread],
"all": [requirements_all],
# Kept for compatibility
"allpy3": [requirements_all],
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Internet",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Programming Language :: Python",
"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",
],
package_data={
"social_core/tests": [
"social_core/tests/*.txt",
"social_core/tests/testkey.pem",
]
},
include_package_data=True,
tests_require=tests_requirements,
test_suite="social_core.tests",
zip_safe=False,
)