Fix abstract renderer signatures and add small stubs so type checkers can
see expected attributes (e.g. username, _decrypt). This removes several
mypy false-positives that were caused by mixin/ABC mismatches.
Preserve message text containing ':' by using split(':', 1) in both
DefaultClientRenderer and RichClientRenderer.
Normalize renderer APIs: print_chat(...) now takes the response mapping
and returns None (matches runtime behavior).
Make RSA symmetric-key request more robust: read r.content instead of a
fixed-size r.raw.read(999), avoiding truncated key material.
Improve _connect_ws exception handling in client to ensure a valid
Exception is re-raised if connection attempts fail.
Correct server/service typing: memory_msgs is now typed as
list[Message] and we null-check incoming payload text before creating a
new Message.
Replace manual package list in setup.py with setuptools.find_packages()
so packaging uses valid Python package names.
Installed types-requests in the project venv so mypy no longer flags the
requests import.
Verification: ran python -m compileall and mypy cmd_chat — no issues
remain.
Notes:
Wire format still uses Python literal evaluation in some places (existing
behavior); switching to JSON for client/server payloads is recommended as a
follow-up for robustness and security.
33 lines
894 B
Python
33 lines
894 B
Python
import setuptools
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="secured_console_chat",
|
|
version="1.1.22",
|
|
author="dinosaurtirex",
|
|
author_email="sneakybeaky18@gmail.com",
|
|
# Use find_packages to correctly discover package names
|
|
packages=setuptools.find_packages(exclude=("tests", "docs")),
|
|
description="Secured console chat with RSA & Fernet",
|
|
long_description=description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/dinosaurtirex/cmd-chat",
|
|
license='MIT',
|
|
python_requires='>=3.10',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'cmd_chat = cmd_chat:main'
|
|
]
|
|
},
|
|
install_requires=[
|
|
"sanic",
|
|
"requests",
|
|
"rsa",
|
|
"cryptography",
|
|
"colorama",
|
|
"pydantic",
|
|
"websocket-client"
|
|
]
|
|
) |