From 20a4ba5670dedd471c7b37e8efae530a8689613c Mon Sep 17 00:00:00 2001 From: vosjedev Date: Thu, 9 Oct 2025 15:44:33 +0200 Subject: Add something for first commit note this project was actually made on 2025-10-09 --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..77beb06 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[project] +name = "acit" +version = "0.1.0" +description = "" +authors = [ + {name = "vosjedev",email = "vosje+git@vosjedev.net"} +] +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "cherrypy (>=18.10.0,<19.0.0)", + "imap-tools (>=1.11.0,<2.0.0)" +] + +[tool.poetry] +packages = [{include = "acit", from = "src"}] + +[tool.poetry.scripts] +acit-web = "acit:run" + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" -- cgit