-
Notifications
You must be signed in to change notification settings - Fork 260
/
setup.py
29 lines (27 loc) · 917 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
import setuptools
with open('README.md') as readme_file:
readme = readme_file.read()
setuptools.setup(
name="streamlit-chat",
version="0.1.1",
author="Yash Pravin Pawar, Yash Vardhan Kapil",
author_email="[email protected]",
description="A streamlit component, to make chatbots",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/AI-Yash/st-chat",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
keywords="chat streamlit streamlit-component",
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",
],
)