Add initial poetry config

This commit is contained in:
Eli Ribble 2024-07-31 18:13:49 +00:00
parent 03b1452f05
commit 5987ccb36b
1 changed files with 17 additions and 0 deletions

17
pyproject.toml Normal file
View File

@ -0,0 +1,17 @@
[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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"