Start of BEdit

This commit is contained in:
2026-07-19 19:19:15 +02:00
parent da69acf919
commit c5ab3329ae
27 changed files with 2516 additions and 0 deletions

30
BEdit/pyproject.toml Normal file
View File

@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "bedit"
version = "0.1.0"
description = "A starter Qt desktop application"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"PySide6>=6.7,<7",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.5",
]
[project.gui-scripts]
bedit = "bedit.app:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"