-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 788 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
setuptools.setup(
name="streamlit_cardselectable",
version="0.0.4",
author="Matheus Ferreira",
author_email="matheus.cn10@gmail.com",
url="https://github.com/Mathtzt/st_cardselectable",
description="Card that the user can select one of the available options. It was created as an alternative to the radio button.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.9",
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit >= 0.63",
],
)