This commit is contained in:
2026-01-01 15:05:29 -06:00
parent 65044a54ef
commit 716007802e
147 changed files with 40416 additions and 27 deletions

52
pyproject.toml Normal file
View File

@@ -0,0 +1,52 @@
[build-system]
requires = ["poetry-core>=1.5"]
build-backend = "poetry.core.masonry.api"
[project]
name = "reticulum-meshchatx"
dynamic = ["version"]
description = "A simple mesh network communications app powered by the Reticulum Network Stack"
readme = "README.md"
authors = [
{name = "Sudo-Ivan"}
]
license = "MIT"
keywords = ["reticulum", "meshchat", "lxmf", "rns"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
"Topic :: Software Development :: Build Tools",
]
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.13.2",
"lxmf>=0.9.3",
"psutil>=7.1.3",
"rns>=1.0.4",
"websockets>=15.0.1",
"bcrypt (>=5.0.0,<6.0.0)",
"aiohttp-session (>=2.12.1,<3.0.0)",
"cryptography (>=46.0.3,<47.0.0)",
"requests (>=2.32.5,<3.0.0)",
"lxst (>=0.4.5,<0.5.0)",
"audioop-lts (>=0.2.2); python_version>='3.13'",
]
[project.scripts]
meshchat = "meshchatx.meshchat:main"
[tool.poetry]
version = "2.50.0"
packages = [{include = "meshchatx"}]
[tool.poetry.group.dev.dependencies]
cx-freeze = ">=7.0.0"
[[tool.poetry.include]]
path = "logo"