-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (24 loc) · 882 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
32
from setuptools import setup, find_packages
from pathlib import Path
NAME = "dash-auth-external"
this_directory = Path(__file__).parent
description = (
"Integrate your dashboards with 3rd party APIs and external OAuth providers."
)
with open(this_directory / "README.md", encoding="utf-8") as f:
long_description = f.read()
requires = ["dash >= 2.0.0", "requests >= 1.0.0", "requests-oauthlib >= 0.3.0"]
setup(
name=NAME,
version="1.2.1",
description=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,
long_description_content_type='text/markdown'
)