From 910910efcda3a506e6f9b381045cd2174a03ff8a Mon Sep 17 00:00:00 2001 From: "Thomas (Tom) C. Gorordo" Date: Fri, 18 Apr 2025 02:03:28 -0700 Subject: [PATCH] add some requirements.txt support --- justfile | 3 +++ requirements.txt | 28 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 requirements.txt diff --git a/justfile b/justfile index 33fbe1b..3fa7783 100644 --- a/justfile +++ b/justfile @@ -18,3 +18,6 @@ clean: wipe: just clean rm -rf .venv + +lock: + uv pip compile pyproject.toml -o requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ee5e022 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,28 @@ +# This file was autogenerated by uv via the following command: +# uv pip compile pyproject.toml -o requirements.txt +click==8.1.8 + # via carousel (pyproject.toml) +iniconfig==2.1.0 + # via pytest +markdown-it-py==3.0.0 + # via rich +mdurl==0.1.2 + # via markdown-it-py +numpy==2.2.4 + # via carousel (pyproject.toml) +packaging==24.2 + # via pytest +pluggy==1.5.0 + # via pytest +polars==1.27.1 + # via carousel (pyproject.toml) +py-cpuinfo==9.0.0 + # via pytest-benchmark +pygments==2.19.1 + # via rich +pytest==8.3.5 + # via pytest-benchmark +pytest-benchmark==5.1.0 + # via carousel (pyproject.toml) +rich==14.0.0 + # via carousel (pyproject.toml)