From 33039c649ee8e3eb010b489faeab196dc57a2a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20W=C3=BCrl?= Date: Thu, 20 Jun 2024 22:17:41 +0200 Subject: [PATCH] add config --- pyproject.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d61d195 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "scan-pdf" +version = "0.4.0" +description = "Tools for using scanners with document feeder" +authors = ["Andreas Würl "] +license = "Apache-2.0" +readme = "README.rst" + +[tool.poetry.dependencies] +python = "^3.8" +pypdf = "^4.2.0" + +[tool.poetry.group.dev.dependencies] +pytest-cov = "^5.0.0" +pytest-mock = "^3.14.0" +mock = "^5.1.0" +assertpy = "^1.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"