Skip to content

Commit c156bba

Browse files
authored
adding setup.py for homebrew
1 parent 347ea62 commit c156bba

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name="cli-chat",
5+
version="1.0.0",
6+
py_modules=["chat"],
7+
install_requires=[
8+
"asyncio",
9+
"websockets>=12.0",
10+
"prompt_toolkit>=3.0.0",
11+
"rich>=13.0.0",
12+
"fastapi>=0.110.0",
13+
"python-dotenv>=1.0.0",
14+
"uvicorn>=0.23.0",
15+
],
16+
entry_points={
17+
"console_scripts": [
18+
"chat=chat:main",
19+
],
20+
},
21+
author="Your Name",
22+
description="A CLI and WebSocket-based chat application using FastAPI and prompt_toolkit",
23+
python_requires=">=3.8",
24+
)

0 commit comments

Comments
 (0)