Initial Commit

This commit is contained in:
Daniel Haus 2026-03-06 16:05:24 +03:00
commit 4dbdc7d793
18 changed files with 2384 additions and 0 deletions

37
pyproject.toml Normal file
View file

@ -0,0 +1,37 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyqt6-scaffold"
version = "0.1.0"
description = "Lightweight scaffold framework for PyQt6 applications"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Education",
]
authors = [
{ name = "Daniel Haus", email = "daniel.haus@protonmail.com" }
]
dependencies = [
"PyQt6>=6.5.0"
]
[project.optional-dependencies]
postgres = ["psycopg2-binary>=2.9.0"]
mysql = ["pymysql>=1.0.0"]
all = ["psycopg2-binary>=2.9.0", "pymysql>=1.0.0"]
[project.urls]
repository = "https://codeberg.org/zerumarex/pyqt6-scaffold"