-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
32 lines (29 loc) · 963 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md") as readme_file:
readme = readme_file.read()
setuptools.setup(
name="streamlit-card",
version="1.0.2",
author="gamcoh",
author_email="cohengamliel8@gmail.com",
description="A streamlit component, to make UI cards",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/gamcoh/st-card",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
keywords="card streamlit streamlit-component",
python_requires=">=3.8",
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit >= 0.63",
],
)