-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.93 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
from setuptools import find_packages
from setuptools import setup
setup(
name="dj-rest-auth-saml",
# entry_points={
# "pytest11": [
# "pytest_minio_mock = pytest_minio_mock.plugin",
# ],
# },
packages=find_packages(exclude=("tests",)),
platforms="any",
python_requires=">=3.6",
install_requires=[
"Django>=4.1.7",
"djangorestframework>=3.14.0",
"djangorestframework-simplejwt",
"dj-rest-auth",
"django-allauth[saml]==0.57.0",
],
url="https://github.com/oussjarrousse/dj-rest-auth-saml",
license="MIT",
author="Oussama Jarrousse",
author_email="[email protected]",
description="A Django App that adds SAML 2.0 endpoints to dj-rest-auth",
long_description=open("README.md", "r", encoding="utf-8").read(),
keywords="Django REST SAML allauth dj-rest-auth SAML2.0 SAML2",
extras_require={"dev": ["pre-commit", "tox"]},
version="0.0.5",
long_description_content_type="text/markdown",
classifiers=[
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Testing",
],
project_urls={
# "Documentation": "https://dj-rest-auth-saml.readthedocs.io/en/latest/",
# "Changelog": "https://dj-rest-auth-saml.readthedocs.io/en/latest/changelog.html",
"Source": "https://github.com/oussjarrousse/dj-rest-auth-saml/",
"Tracker": "https://github.com/oussjarrousse/dj-rest-auth-saml/issues",
},
)