forked from jamesholcombe/dash-auth-external
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 742 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
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="1.1.0",
description=long_description,
python_requires=">=3.7",
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,
)