Files
lab_pipes/pyproject.toml
ilmabura 72ad55485f commit 1:
cat words... | order | length and cat words...| length |order are different because the first one orders the the words and then calculates the lentghs of each word in that order.
the second one calculates the lengths and then orders them by length.
2025-09-28 11:53:30 -04:00

23 lines
442 B
TOML

[project]
name = "lab-pipes"
version = "0.1.0"
description = ""
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"wordflow (>=0.2.4,<0.3.0)",
"setuptools (>=80.9.0,<81.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false