Files
MeshChatX/pyproject.toml
Sudo-Ivan 9b8086a855
All checks were successful
CI / test-backend (push) Successful in 4s
Build Test / Build and Test (push) Successful in 13m17s
Benchmarks / benchmark (push) Successful in 14m20s
CI / build-frontend (pull_request) Successful in 9m40s
CI / test-backend (pull_request) Successful in 5s
OSV-Scanner PR Scan / scan-pr (pull_request) Successful in 10s
Tests / test (push) Successful in 11m39s
Benchmarks / benchmark (pull_request) Successful in 14m26s
CI / test-lang (pull_request) Successful in 9m35s
CI / build-frontend (push) Successful in 9m41s
CI / lint (push) Successful in 9m43s
CI / test-lang (push) Successful in 9m37s
Build and Publish Docker Image / build (pull_request) Has been skipped
CI / lint (pull_request) Successful in 9m44s
Tests / test (pull_request) Successful in 11m33s
Build and Publish Docker Image / build-dev (pull_request) Successful in 20m0s
Build Test / Build and Test (pull_request) Successful in 48m40s
chore(dependencies): update aiohttp to version 3.13.3, certifi to 2026.1.4, cx-freeze to 8.5.3, hypothesis to 6.148.11, and rns to 1.1.0
2026-01-04 11:06:57 -06:00

78 lines
1.7 KiB
TOML

[project]
name = "reticulum-meshchatx"
version = "4.0.0"
description = "A simple mesh network communications app powered by the Reticulum Network Stack"
authors = [
{name = "Sudo-Ivan"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
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",
]
dependencies = [
"aiohttp>=3.13.2",
"lxmf>=0.9.3",
"psutil>=7.1.3",
"rns>=1.1.0",
"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",
"audioop-lts>=0.2.2; python_version >= '3.13'",
"ply>=3.11,<4.0",
"lxst",
]
[project.scripts]
meshchat = "meshchatx.meshchat:main"
[project.urls]
Homepage = "https://git.quad4.io/RNS-Things/MeshChatX"
[tool.poetry]
packages = [{include = "meshchatx"}]
[tool.poetry.dependencies]
python = ">=3.11"
[tool.poetry.group.dev.dependencies]
cx-freeze = ">=7.0.0"
pytest = ">=9.0.2,<10.0.0"
pytest-asyncio = ">=1.3.0,<2.0.0"
pytest-cov = ">=7.0.0,<8.0.0"
hypothesis = ">=6.148.9"
[[tool.poetry.include]]
path = "logo"
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.package-data]
meshchatx = ["public/**/*", "public/*"]
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
exclude = [
".git",
".pnpm-store",
"node_modules",
"venv",
".venv",
"tests/frontend",
]