mirror of
https://github.com/bliksemlabs/PyMeshCoreGUI.git
synced 2026-03-28 17:42:41 +01:00
PyMeshCore GUI is an open-source desktop application for interacting with the MeshCore network. It focuses on **chatting, prototyping, and development** on top of MeshCore, with an emphasis on desktop workflows and developer accessibility. The project is built using PySide6 (Qt for Python) and meshcore-py.
30 lines
528 B
TOML
30 lines
528 B
TOML
[project]
|
|
name = "PyMeshCoreGUI"
|
|
version = "0.1.0"
|
|
description = "An open source Qt application build on MeshCore."
|
|
authors = [
|
|
{ name = "Stefan de Konink", email = "stefan@konink.de" },
|
|
]
|
|
dependencies = [
|
|
"PySide6",
|
|
"meshcore",
|
|
]
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
[project.scripts]
|
|
meshcore-gui = "meshcore_gui.main:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
|
|
[tool.ty]
|
|
# Configuration for ty (if any) can go here
|