forked from caiodearaujo/streamlit-awesome-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 862 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
import setuptools
setuptools.setup(
name="streamlit-awesome-table",
version="0.0.1",
author="Caio Fábio de Araujo",
author_email="[email protected]",
description="Awesome Table is a component to display a table in Streamlit with search and order.",
long_description="Display a table with search and order components that will be display above the table or in sidebar.",
long_description_content_type="text/plain",
url="https://github.com/caiodearaujo/streamlit-awesome-table",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit >= 0.63",
"pandas"
],
)