From 0d39e2ccdfa08ce68b3b066992f4f863b66cca38 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Wed, 20 May 2026 13:36:05 +0200 Subject: [PATCH] added top-level folder --- pixi.toml | 2 +- {auth => stand}/__init__.py | 0 aggridx.py => stand/aggridx.py | 0 annotations.py => stand/annotations.py | 0 api.py => stand/api.py | 0 stand/auth/__init__.py | 0 {auth => stand/auth}/fakeldap.py | 0 {auth => stand/auth}/krbldap.py | 0 {auth => stand/auth}/login.py | 0 {auth => stand/auth}/logout.py | 0 {auth => stand/auth}/mw.py | 0 {auth => stand/auth}/psildap.py | 0 {auth => stand/auth}/secret.py | 0 cli.py => stand/cli.py | 0 config.py => stand/config.py | 0 home.py => stand/home.py | 0 logcfg.py => stand/logcfg.py | 0 stand.py => stand/main.py | 0 registry.py => stand/registry.py | 0 state.py => stand/state.py | 0 table.py => stand/table.py | 0 21 files changed, 1 insertion(+), 1 deletion(-) rename {auth => stand}/__init__.py (100%) rename aggridx.py => stand/aggridx.py (100%) rename annotations.py => stand/annotations.py (100%) rename api.py => stand/api.py (100%) create mode 100644 stand/auth/__init__.py rename {auth => stand/auth}/fakeldap.py (100%) rename {auth => stand/auth}/krbldap.py (100%) rename {auth => stand/auth}/login.py (100%) rename {auth => stand/auth}/logout.py (100%) rename {auth => stand/auth}/mw.py (100%) rename {auth => stand/auth}/psildap.py (100%) rename {auth => stand/auth}/secret.py (100%) rename cli.py => stand/cli.py (100%) rename config.py => stand/config.py (100%) rename home.py => stand/home.py (100%) rename logcfg.py => stand/logcfg.py (100%) rename stand.py => stand/main.py (100%) rename registry.py => stand/registry.py (100%) rename state.py => stand/state.py (100%) rename table.py => stand/table.py (100%) diff --git a/pixi.toml b/pixi.toml index 7081800..1073915 100644 --- a/pixi.toml +++ b/pixi.toml @@ -6,7 +6,7 @@ platforms = ["linux-64"] version = "0.0.2" [tasks] -stand = "./stand.py" +stand = "stand/main.py" [dependencies] python = ">=3.13,<3.14" diff --git a/auth/__init__.py b/stand/__init__.py similarity index 100% rename from auth/__init__.py rename to stand/__init__.py diff --git a/aggridx.py b/stand/aggridx.py similarity index 100% rename from aggridx.py rename to stand/aggridx.py diff --git a/annotations.py b/stand/annotations.py similarity index 100% rename from annotations.py rename to stand/annotations.py diff --git a/api.py b/stand/api.py similarity index 100% rename from api.py rename to stand/api.py diff --git a/stand/auth/__init__.py b/stand/auth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/auth/fakeldap.py b/stand/auth/fakeldap.py similarity index 100% rename from auth/fakeldap.py rename to stand/auth/fakeldap.py diff --git a/auth/krbldap.py b/stand/auth/krbldap.py similarity index 100% rename from auth/krbldap.py rename to stand/auth/krbldap.py diff --git a/auth/login.py b/stand/auth/login.py similarity index 100% rename from auth/login.py rename to stand/auth/login.py diff --git a/auth/logout.py b/stand/auth/logout.py similarity index 100% rename from auth/logout.py rename to stand/auth/logout.py diff --git a/auth/mw.py b/stand/auth/mw.py similarity index 100% rename from auth/mw.py rename to stand/auth/mw.py diff --git a/auth/psildap.py b/stand/auth/psildap.py similarity index 100% rename from auth/psildap.py rename to stand/auth/psildap.py diff --git a/auth/secret.py b/stand/auth/secret.py similarity index 100% rename from auth/secret.py rename to stand/auth/secret.py diff --git a/cli.py b/stand/cli.py similarity index 100% rename from cli.py rename to stand/cli.py diff --git a/config.py b/stand/config.py similarity index 100% rename from config.py rename to stand/config.py diff --git a/home.py b/stand/home.py similarity index 100% rename from home.py rename to stand/home.py diff --git a/logcfg.py b/stand/logcfg.py similarity index 100% rename from logcfg.py rename to stand/logcfg.py diff --git a/stand.py b/stand/main.py similarity index 100% rename from stand.py rename to stand/main.py diff --git a/registry.py b/stand/registry.py similarity index 100% rename from registry.py rename to stand/registry.py diff --git a/state.py b/stand/state.py similarity index 100% rename from state.py rename to stand/state.py diff --git a/table.py b/stand/table.py similarity index 100% rename from table.py rename to stand/table.py