42 lines
No EOL
1.2 KiB
TOML
42 lines
No EOL
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pyqt6-scaffold"
|
|
version = "0.1.2"
|
|
description = "Lightweight scaffold framework for PyQt6 applications"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "LGPL-3.0-or-later"
|
|
license-files = ["LICENSE"]
|
|
classifiers = [
|
|
"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"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["pyqt6_scaffold*"]
|
|
exclude = ["docs*", "README.md", "examples*"]
|
|
|
|
[project.urls]
|
|
repository = "https://codeberg.org/zerumarex/pyqt6-scaffold" |