summaryrefslogtreecommitdiff
path: root/src/caelestia/parser.py
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-11 00:41:05 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-11 00:41:05 +1000
commitf663e6f6908a9dfb05ac22e867e726c1bf6f0960 (patch)
tree4e9a8eaf275a2e145c6384964cdc5f351b49b924 /src/caelestia/parser.py
parentfeat: impl workspace-action command (diff)
downloadcaelestia-cli-f663e6f6908a9dfb05ac22e867e726c1bf6f0960.tar.gz
caelestia-cli-f663e6f6908a9dfb05ac22e867e726c1bf6f0960.tar.bz2
caelestia-cli-f663e6f6908a9dfb05ac22e867e726c1bf6f0960.zip
internal: refactor for packaging
Package using python-build, python-installer and hatch
Diffstat (limited to '')
-rw-r--r--src/caelestia/parser.py (renamed from src/parser.py)16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/parser.py b/src/caelestia/parser.py
index 49695ee..db45645 100644
--- a/src/parser.py
+++ b/src/caelestia/parser.py
@@ -1,7 +1,19 @@
import argparse
-from data import get_scheme_names, scheme_variants
-from subcommands import clipboard, emoji, pip, record, scheme, screenshot, shell, toggle, variant, wallpaper, wsaction
+from caelestia.data import get_scheme_names, scheme_variants
+from caelestia.subcommands import (
+ clipboard,
+ emoji,
+ pip,
+ record,
+ scheme,
+ screenshot,
+ shell,
+ toggle,
+ variant,
+ wallpaper,
+ wsaction,
+)
def parse_args() -> argparse.Namespace: