Compare commits

..

1 Commits

Author SHA1 Message Date
6273e833f8 testing 2024-10-06 03:23:44 -04:00
5 changed files with 115 additions and 129 deletions

View File

@ -1,15 +0,0 @@
.PHONY: default venv install dev clean
default: dev
venv:
@[ ! -d ./venv ] && python3 -m venv venv || true
require: venv
@bash -c "source venv/bin/activate && pip install -r requirements.txt"
dev: require
@bash -c "source venv/bin/activate && pip install -e ."
clean:
rm -rf venv dist tarc.egg-info

View File

@ -1,7 +1,4 @@
[project]
name = "tarc"
version = "0.0.1dev3"
version = "0.0.1dev2"
description = "Manage BT archives"
[project.scripts]
tarc = "tarc:main"

20
tarc.sh Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
# Create a virtual environment if it does not exist
if [ ! -d "venv" ]; then
# shellcheck disable=SC1091
python3 -m venv venv && \
source venv/bin/activate && \
pip install -r requirements.txt && \
deactivate
fi
# Activate the virtual environment
# shellcheck disable=SC1091
source venv/bin/activate
# Run the Python script
python tarc/main.py "$@"
# Deactivate the virtual environment
deactivate

View File

@ -1,5 +0,0 @@
"""
tarc - Manage BT archives
"""
from .main import main

View File

@ -154,11 +154,6 @@ def list_clients(conn):
return rows
def main():
"""
Entrypoint of the program.
"""
parser = argparse.ArgumentParser(description="Manage BT archives", prog="tarc")
subparsers = parser.add_subparsers(
dest="command", required=True, help="Available commands"
@ -260,14 +255,8 @@ def main():
print(f"[DEBUG]: Tracker {repr(elem)}")
print("\n", end="")
else:
print(
f'[ERROR]: Multiple clients ({len(clients)}) using "{args.endpoint}"'
)
print(f'[ERROR]: Multiple clients ({len(clients)}) using "{args.endpoint}"')
sys.exit(1)
else:
print("[ERROR]: Must specify directory OR client endpoint")
sys.exit(1)
if __name__ == "__main__":
main()