From 3935430219e6abe65489ef005920fdd3bc02068c Mon Sep 17 00:00:00 2001 From: Tobias Date: Sat, 14 Jun 2025 14:17:32 +0200 Subject: [PATCH] added poetry and on raspcode now --- .gitignore | 1 + README.md | 13 +++++++++++++ pyproject.toml | 15 +++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/README.md b/README.md index e69de29..29d71a4 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,13 @@ + + +# Functional programming support in modern Python + +* easy composition, memoization, currying, type checking + + + + + + + + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9e717be --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "func-py" +version = "0.1.0" +description = "" +authors = ["Tobias "] +license = "bsd3" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"