rrc-gui/pyproject.toml
2026-01-08 17:41:45 -05:00

61 lines
1.3 KiB
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rrc-gui"
version = "0.1.0"
description = "GUI client for RRC (Reticulum Relay Chat)"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
keywords = ["reticulum", "rns", "rrc", "chat", "gui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat",
]
dependencies = [
"wxPython>=4.2.0",
"cbor2>=5.6.0",
"rns>=0.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"black>=24.0.0",
"mypy>=1.0.0",
"ruff>=0.6.0",
]
[project.scripts]
rrc-gui = "rrc_gui.main:main"
[tool.setuptools]
packages = ["rrc_gui"]
[tool.ruff]
target-version = "py311"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
check_untyped_defs = true
[[tool.mypy.overrides]]
module = ["RNS", "RNS.*", "wx", "wx.*"]
ignore_missing_imports = true