beeref/pyproject.toml
Dmitry dc733cfc23 Update dependencies and icons; remove unused icons
- Updated Python version requirement in `pyproject.toml` to allow any version from 3.9 onwards.
- Modified dependencies for `lxml` and `pyQt6` to allow newer versions.
- Replaced several SVG icons with larger versions and updated their designs for better visual consistency.
- Removed unused icons: `trash-alt.svg` and `undo.svg`.
- Updated the `reset_icon` in `text_floating_menu.py` to use `clear.svg` instead of `undo.svg`.
2025-11-21 12:45:39 +03:00

37 lines
No EOL
887 B
TOML

[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["beeref*"]
[tool.setuptools.package-data]
"*" = ["*.html", "*.png"]
[project]
name = "BeeRef"
version = "0.3.4-dev"
description = "A simple reference image viewer"
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{ name = "Rebecca Breu", email = "rebecca@rbreu.de" },
]
requires-python = ">=3.9"
dependencies = [
"exif>=1.3.5,<=1.6.0",
"lxml>=5.1.0",
"pyQt6-Qt6>=6.10.0",
"pyQt6>=6.10.0",
"rectangle-packer>=2.0.1,<=2.0.2",
]
[project.gui-scripts]
beeref = "beeref.__main__:main"
[project.urls]
Homepage = "https://beeref.org/"
Repository = "https://github.com/rbreu/beeref"
# Documentation =
Issues = "https://github.com/rbreu/beeref/issues"
Changelog = "https://github.com/rbreu/beeref/blob/main/CHANGELOG.rst"