scan-uploader/pyproject.toml

20 lines
433 B
TOML

[tool.poetry]
name = "scan-uploader"
version = "0.1.0"
description = "Tool for detecting new scans and uploading them"
authors = ["Eli Ribble <eli@theribbles.org>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
inotify = "^0.2.10"
requests = "^2.32.3"
[tool.poetry.scripts]
scan-uploader = "scan_uploader:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"