mirror of
https://github.com/kc1awv/rrc-gui.git
synced 2026-08-18 09:48:42 -04:00
61 lines
1.3 KiB
TOML
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
|