diff options
| author | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-28 13:10:44 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@tum.de> | 2025-08-28 13:10:44 +0000 |
| commit | 7e46de2da5f4d99ab672f5609b0142a4915498fc (patch) | |
| tree | 8a569cf895d4e9d61030c3e08dcc30e7a2c2c42f | |
| parent | 301c2d39449089d965d03353831148294a192c4f (diff) | |
| download | focaccia-7e46de2da5f4d99ab672f5609b0142a4915498fc.tar.gz focaccia-7e46de2da5f4d99ab672f5609b0142a4915498fc.zip | |
Move capture transforms tool to our current setup
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 5 | ||||
| -rw-r--r-- | pyproject.toml | 1 | ||||
| -rwxr-xr-x | src/focaccia/tools/capture_transforms.py (renamed from tools/capture_transforms.py) | 0 |
3 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index af3cd11..25b5aec 100644 --- a/flake.nix +++ b/flake.nix @@ -219,6 +219,11 @@ program = "${packages.default}/bin/convert"; }; + capture-transforms = { + type = "app"; + program = "${packages.default}/bin/capture-transforms"; + }; + # Useful for synchronize the uv lockfile uv-sync = { type = "app"; diff --git a/pyproject.toml b/pyproject.toml index d0e606a..27e1713 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ dev = [ [project.scripts] focaccia = "focaccia.cli:main" convert = "focaccia.tools.convert:main" +capture-transforms = "focaccia.tools.capture_transforms:main" [build-system] requires = ["hatchling"] diff --git a/tools/capture_transforms.py b/src/focaccia/tools/capture_transforms.py index 552b855..552b855 100755 --- a/tools/capture_transforms.py +++ b/src/focaccia/tools/capture_transforms.py |