PyPi Update

This commit is contained in:
mirai 2023-03-08 19:26:21 +03:00
parent bad818c7e9
commit 4554d76d0b
2 changed files with 11 additions and 3 deletions

View File

@ -28,7 +28,9 @@ async def run_client(
async def run() -> None:
action: int = int(input("Choose action:\n1. Run server\n2. Run client\nAction: "))
action: int = int(
input("Choose action:\n1. Run server\n2. Run client\nAction: ")
)
if action == 1:
await run_server(
input("IP: "),

View File

@ -5,10 +5,16 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup(
name="cmd_chat",
version="1.0",
version="1.3",
author="dinosaurtirex",
author_email="sneakybeaky18@gmail.com",
packages=["cmd_chat"],
packages=[
"cmd_chat",
"cmd_chat/client",
"cmd_chat/client/core",
"cmd_chat/client/core/abs",
"cmd_chat/server",
],
description="Secured console chat with RSA & Fernet",
long_description=description,
long_description_content_type="text/markdown",