testing
This commit is contained in:
parent
4ab46ee2fc
commit
8b36bf9421
15
Makefile
Normal file
15
Makefile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
.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
|
@ -1,4 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "tarc"
|
name = "tarc"
|
||||||
version = "0.0.1dev2"
|
version = "0.0.1dev3"
|
||||||
description = "Manage BT archives"
|
description = "Manage BT archives"
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
tarc = "tarc:main"
|
||||||
|
20
tarc.sh
20
tarc.sh
@ -1,20 +0,0 @@
|
|||||||
#!/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
|
|
@ -0,0 +1,5 @@
|
|||||||
|
"""
|
||||||
|
tarc - Manage BT archives
|
||||||
|
"""
|
||||||
|
|
||||||
|
from .main import main
|
13
tarc/main.py
13
tarc/main.py
@ -154,6 +154,11 @@ def list_clients(conn):
|
|||||||
return rows
|
return rows
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""
|
||||||
|
Entrypoint of the program.
|
||||||
|
"""
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description="Manage BT archives", prog="tarc")
|
parser = argparse.ArgumentParser(description="Manage BT archives", prog="tarc")
|
||||||
subparsers = parser.add_subparsers(
|
subparsers = parser.add_subparsers(
|
||||||
dest="command", required=True, help="Available commands"
|
dest="command", required=True, help="Available commands"
|
||||||
@ -255,8 +260,14 @@ if args.command == "scan":
|
|||||||
print(f"[DEBUG]: Tracker {repr(elem)}")
|
print(f"[DEBUG]: Tracker {repr(elem)}")
|
||||||
print("\n", end="")
|
print("\n", end="")
|
||||||
else:
|
else:
|
||||||
print(f'[ERROR]: Multiple clients ({len(clients)}) using "{args.endpoint}"')
|
print(
|
||||||
|
f'[ERROR]: Multiple clients ({len(clients)}) using "{args.endpoint}"'
|
||||||
|
)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
print("[ERROR]: Must specify directory OR client endpoint")
|
print("[ERROR]: Must specify directory OR client endpoint")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user