-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 678 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (17 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
exec(open("streamlit_openai/version.py").read())
setup(
name="streamlit-openai",
version=__version__,
author='Seung-been "Steven" Lee',
author_email="sbstevenlee@gmail.com",
description="Build AI chatbots with Streamlit and OpenAI",
url="https://github.com/sbslee/streamlit-openai",
packages=find_packages(),
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={'console_scripts': ['streamlit-openai=streamlit_openai.__main__:main']}
)