bouquin/pyproject.toml
Miguel Jacq 01997aee90
All checks were successful
CI / test (push) Successful in 3m43s
Lint / test (push) Successful in 28s
Trivy / test (push) Successful in 24s
Add tag relationship visualisation graph tool
2025-11-18 17:29:57 +11:00

42 lines
1,015 B
TOML

[tool.poetry]
name = "bouquin"
version = "0.3.2"
description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher."
authors = ["Miguel Jacq <mig@mig5.net>"]
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://git.mig5.net/mig5/bouquin"
packages = [{ include = "bouquin" }]
include = ["bouquin/locales/*.json"]
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
pyside6 = ">=6.8.1,<7.0.0"
sqlcipher3-wheels = "^0.5.5.post0"
requests = "^2.32.5"
pyqtgraph = "^0.14.0"
networkx = "^3.5"
[tool.poetry.scripts]
bouquin = "bouquin.__main__:main"
[tool.poetry.group.test.dependencies]
pytest = "^8.4.2"
pytest-qt = "^4.5.0"
pytest-mock = "^3.15.1"
pytest-cov = "^7.0.0"
[tool.poetry.group.dev.dependencies]
pyproject-appimage = "^4.2"
[tool.pyproject-appimage]
script = "bouquin"
output = "Bouquin.AppImage"
[tool.vulture]
paths = ["bouquin", "vulture_ignorelist.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"