25 lines
515 B
TOML
25 lines
515 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "booru-viewer"
|
|
version = "0.2.7"
|
|
description = "Local booru image browser with Qt6 GUI"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27,<1.0",
|
|
"Pillow>=10.0,<12.0",
|
|
"PySide6>=6.6,<7.0",
|
|
"python-mpv>=1.0,<2.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
booru-viewer = "booru_viewer.main_gui:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["booru_viewer"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["booru_viewer"]
|