forked from streamlit/component-template
-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
21 lines (20 loc) · 757 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
setuptools.setup(
name="streamlit-plotly-events",
version="0.0.6",
author="Ellie Jones",
author_email="ellie@altaml.com",
description="Plotly chart component for Streamlit that also allows for events to bubble back up to Streamlit.",
long_description="Plotly chart component for Streamlit that also allows for events to bubble back up to Streamlit.",
long_description_content_type="text/plain",
url="https://github.com/null-jones/streamlit-plotly-events",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=[
"streamlit >= 0.63",
"plotly >= 4.14.3",
],
)