chore(dependencies): update content-hash in poetry.lock and refine dependencies in pyproject.toml

This commit is contained in:
2026-01-01 18:18:18 -06:00
parent 8226f4e174
commit 9114d8a411
2 changed files with 18 additions and 19 deletions

2
poetry.lock generated
View File

@@ -1987,4 +1987,4 @@ propcache = ">=0.2.1"
[metadata] [metadata]
lock-version = "2.1" lock-version = "2.1"
python-versions = ">=3.11" python-versions = ">=3.11"
content-hash = "6dae87a310bad0bec81b8eea974fd5cb4b0c40dd2873d09ff7f4659a13f63d7e" content-hash = "078c804def9b85b78fea3328b5ce20d9cb54e279e56a6083125e6a0017d8485e"

View File

@@ -1,16 +1,13 @@
[build-system]
requires = ["poetry-core>=1.5"]
build-backend = "poetry.core.masonry.api"
[project] [project]
name = "reticulum-meshchatx" name = "reticulum-meshchatx"
dynamic = ["version"] version = "3.0.0"
description = "A simple mesh network communications app powered by the Reticulum Network Stack" description = "A simple mesh network communications app powered by the Reticulum Network Stack"
readme = "README.md"
authors = [ authors = [
{name = "Sudo-Ivan"} {name = "Sudo-Ivan"}
] ]
license = "MIT" license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["reticulum", "meshchat", "lxmf", "rns"] keywords = ["reticulum", "meshchat", "lxmf", "rns"]
classifiers = [ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
@@ -22,30 +19,28 @@ classifiers = [
"Topic :: Communications", "Topic :: Communications",
"Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Build Tools",
] ]
requires-python = ">=3.11"
dependencies = [ dependencies = [
"aiohttp>=3.13.2", "aiohttp>=3.13.2",
"lxmf>=0.9.3", "lxmf>=0.9.3",
"psutil>=7.1.3", "psutil>=7.1.3",
"rns>=1.0.4", "rns>=1.0.4",
"websockets>=15.0.1", "websockets>=15.0.1",
"bcrypt (>=5.0.0,<6.0.0)", "bcrypt>=5.0.0,<6.0.0",
"aiohttp-session (>=2.12.1,<3.0.0)", "aiohttp-session>=2.12.1,<3.0.0",
"cryptography (>=46.0.3,<47.0.0)", "cryptography>=46.0.3,<47.0.0",
"requests (>=2.32.5,<3.0.0)", "requests>=2.32.5,<3.0.0",
"lxst (>=0.4.5,<0.5.0)", "lxst>=0.4.5,<0.5.0",
"audioop-lts (>=0.2.2); python_version>='3.13'", "audioop-lts>=0.2.2; python_version >= '3.13'",
"ply (>=3.11,<4.0)", "ply>=3.11,<4.0",
] ]
[project.urls]
Homepage = "https://git.quad4.io/RNS-Things/MeshChatX"
[project.scripts] [project.scripts]
meshchat = "meshchatx.meshchat:main" meshchat = "meshchatx.meshchat:main"
[project.urls]
Homepage = "https://git.quad4.io/RNS-Things/MeshChatX"
[tool.poetry] [tool.poetry]
version = "3.0.0"
packages = [{include = "meshchatx"}] packages = [{include = "meshchatx"}]
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
@@ -54,3 +49,7 @@ cx-freeze = ">=7.0.0"
[[tool.poetry.include]] [[tool.poetry.include]]
path = "logo" path = "logo"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"