From 5987ccb36b73d9394a242713b8378c16047ef1c1 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 31 Jul 2024 18:13:49 +0000 Subject: [PATCH] Add initial poetry config --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..233e8a2 --- /dev/null +++ b/pyproject.toml @@ -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 "] +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"