set demos as console scripts, update chat instructions

This commit is contained in:
pacrob
2024-12-20 13:23:04 -07:00
committed by Paul Robinson
parent bc90632f9d
commit a72dbaa58d
9 changed files with 77 additions and 38 deletions

View File

@ -111,4 +111,11 @@ setup(
"Programming Language :: Python :: 3.12",
],
platforms=["unix", "linux", "osx"],
entry_points={
"console_scripts": [
"chat-demo=examples.chat.chat:main",
"echo-demo=examples.echo.echo:main",
"ping-demo=examples.ping.ping:main",
],
},
)