docs: adding tutorial 1
This commit is contained in:
parent
01585b6ec5
commit
a5727e3355
12 changed files with 764 additions and 0 deletions
17
package/examples/tutorials/chatapp/setup.py
Normal file
17
package/examples/tutorials/chatapp/setup.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="chatapp",
|
||||
version="0.1.0",
|
||||
packages=find_packages(),
|
||||
description="Chat App",
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"chatapp-client = chatapp.client:main",
|
||||
"chatapp-server = chatapp.server:main",
|
||||
],
|
||||
},
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
python_requires=">=3.6",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue