37 lines
No EOL
1.1 KiB
TOML
37 lines
No EOL
1.1 KiB
TOML
[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" |