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"