-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
55 lines (52 loc) · 1.87 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
from setuptools import setup
main_ns = {}
with open('dash_auth/version.py', encoding='utf-8') as f:
exec(f.read(), main_ns)
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='dash_auth',
version=main_ns['__version__'],
author='Christopher Parmer',
author_email='[email protected]',
packages=['dash_auth'],
license='MIT',
description='Dash Authorization Package.',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'dash>=1.1.1',
'flask',
'werkzeug',
],
extras_require={
"oidc": ["authlib"],
},
python_requires=">=3.8",
include_package_data=True,
url='https://plotly.com/dash',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
"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',
'Topic :: Database :: Front-Ends',
'Topic :: Office/Business :: Financial :: Spreadsheet',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Widget Sets'
]
)