-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 673 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="dash-react-scan-plugin",
version="0.1.1",
install_requires=[
"dash>=3.1.1",
],
packages=["dash_react_scan_plugin"],
author="CNFeffery",
author_email="fefferypzy@gmail.com",
description="A plugin to monitor the rendering performance of page components for Dash applications using Dash Hooks.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CNFeffery/dash-react-scan-plugin",
)