added poetry and on raspcode now

This commit is contained in:
Tobias Weise 2025-06-14 14:17:32 +02:00
parent 1b1ad5a25d
commit 3935430219
3 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pyc

View File

@ -0,0 +1,13 @@
# Functional programming support in modern Python
* easy composition, memoization, currying, type checking

15
pyproject.toml Normal file
View File

@ -0,0 +1,15 @@
[tool.poetry]
name = "func-py"
version = "0.1.0"
description = ""
authors = ["Tobias <tobias_weise@gmx.de>"]
license = "bsd3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"