hack-house/setup.py
2023-03-08 19:43:59 +03:00

33 lines
832 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.1",
author="dinosaurtirex",
author_email="sneakybeaky18@gmail.com",
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",
url="https://github.com/dinosaurtirex/cmd-chat",
license='MIT',
python_requires='>=3.10',
install_requires=[
"sanic",
"requests",
"rsa",
"cryptography",
"colorama",
"pydantic",
"websocket-client"
]
)