-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 874 Bytes
/
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
import setuptools
from pathlib import Path
README = (Path(__file__).parent/"README.md").read_text()
setuptools.setup(
name="EasyOIDC",
version="0.1.10",
author="Juan Pablo Manson",
author_email="jpmanson@gmail.com",
description="Easy integration with OIDC authentication servers",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/jpmanson/EasyOIDC",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.9",
license_files=("LICENSE",),
install_requires=[
"Authlib>=1.3.0",
"requests>=2.31.0",
"python-decouple>=3.8",
"redis_collections>=0.12.0",
],
extras_require={
'flask': ['Flask>=2.3.3'],
'nicegui': ['nicegui>=1.4.0'],
'taipy': ['taipy>=2.4.0'],
}
)