-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
46 lines (43 loc) · 1.45 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
from setuptools import setup
main_ns = {}
with open("dash_enterprise_auth/version.py", encoding="utf-8") as f:
exec(f.read(), main_ns) # pylint: disable=exec-used
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="dash_enterprise_auth",
version=main_ns["__version__"],
description="Authentication integrations for apps using Dash Enterprise",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="dash dash-enterprise dash-auth plotly",
author="Antoine Roy-Gobeil",
author_email="[email protected]",
license="MIT",
packages=[
"dash_enterprise_auth"
],
install_requires=[
"dash",
"Flask>=1.0.4,<3.1",
"Werkzeug<3.1",
"requests[security]",
"PyJWT",
'cryptography;python_version>="3.7"',
'cryptography<3.4;python_version<"3.7"'
],
python_requires=">=3.6",
url="https://plotly.com/dash",
classifiers=[
"License :: OSI Approved :: MIT License",
"Framework :: Dash",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
)