36 lines
741 B
TOML
36 lines
741 B
TOML
[project]
|
|
name = "curator"
|
|
version = "1.0.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "jan.doubravsky@gmail.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.14,<3.15"
|
|
dependencies = [
|
|
"pyside6 (>=6.11.1,<7.0.0)",
|
|
"requests (>=2.34.2,<3.0.0)",
|
|
"beautifulsoup4 (>=4.15.0,<5.0.0)",
|
|
"python-dotenv (>=1.2.2,<2.0.0)",
|
|
"pillow (>=12.2.0,<13.0.0)",
|
|
"loguru (>=0.7.3,<0.8.0)",
|
|
"truststore (>=0.10.4,<0.11.0)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff (>=0.15.17,<0.16.0)",
|
|
"mypy (>=2.1.0,<3.0.0)",
|
|
"pytest (>=9.0.3,<10.0.0)"
|
|
]
|