forked from jamesholcombe/dash-auth-external
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 747 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
from setuptools import setup, find_packages
from pathlib import Path
NAME = "dash-auth-external"
this_directory = Path(__file__).parent
long_description = "Integrate your dashboards with 3rd party APIs and external OAuth providers."
requires = [
"dash >= 2.0.0",
"requests >= 1.0.0",
"requests-oauthlib >= 0.3.0"
]
setup(
name=NAME,
version="0.2.4",
description="Integrate Dash with 3rd Parties and external providers",
author_email="[email protected]",
url="https://github.com/jamesholcombe/dash-auth-external",
keywords=["Dash", "Plotly", "Authentication", "Auth", "External"],
install_requires=requires,
packages=find_packages(),
include_package_data=True,
long_description=long_description,
)