development-hub/pyproject.toml

31 lines
621 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "development-hub"
version = "0.1.0"
description = "Central project orchestration GUI for multi-project development"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"PyQt6>=6.5.0",
"pyte>=0.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-qt>=4.0",
]
[project.scripts]
development-hub = "development_hub.app:main"
[project.gui-scripts]
development-hub-gui = "development_hub.app:main"
[tool.setuptools.packages.find]
where = ["src"]