PyPi Update
This commit is contained in:
parent
bad818c7e9
commit
4554d76d0b
|
|
@ -28,7 +28,9 @@ async def run_client(
|
||||||
|
|
||||||
|
|
||||||
async def run() -> None:
|
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:
|
if action == 1:
|
||||||
await run_server(
|
await run_server(
|
||||||
input("IP: "),
|
input("IP: "),
|
||||||
|
|
|
||||||
10
setup.py
10
setup.py
|
|
@ -5,10 +5,16 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="cmd_chat",
|
name="cmd_chat",
|
||||||
version="1.0",
|
version="1.3",
|
||||||
author="dinosaurtirex",
|
author="dinosaurtirex",
|
||||||
author_email="sneakybeaky18@gmail.com",
|
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",
|
description="Secured console chat with RSA & Fernet",
|
||||||
long_description=description,
|
long_description=description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user