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