aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorvosjedev <vosje+git@vosjedev.net>2025-10-09 15:44:33 +0200
committervosjedev <vosje+git@vosjedev.net>2025-10-09 15:44:33 +0200
commit20a4ba5670dedd471c7b37e8efae530a8689613c (patch)
treec0f3a13ddcf8f287b2103f7d9387c9ce44950037 /pyproject.toml
downloadacit-20a4ba5670dedd471c7b37e8efae530a8689613c.tar.gz
acit-20a4ba5670dedd471c7b37e8efae530a8689613c.tar.bz2
acit-20a4ba5670dedd471c7b37e8efae530a8689613c.tar.xz
Add something for first commit
note this project was actually made on 2025-10-09
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml23
1 files changed, 23 insertions, 0 deletions
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"