-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
29 lines (25 loc) · 803 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
from pathlib import Path
def readme():
readme = Path(__file__).parent.absolute().joinpath('README.md')
return readme.read_text("utf-8")
setuptools.setup(
name='streamlit-chatbox',
version='1.1.13.post1',
author='liunux',
author_email='[email protected]',
description='A chat box and some helpful tools used to build chatbot app with streamlit',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/liunux4odoo/streamlit-chatbox',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires='>=3.8',
install_requires=[
'streamlit>=1.26.0',
'simplejson',
'streamlit-feedback',
'streamlit-markdown>=1.0.9',
]
)