From 1b48ade5d4bde58a556ba7a604128336ebe2bc7b Mon Sep 17 00:00:00 2001 From: pstruebi Date: Wed, 26 Feb 2025 10:49:11 +0100 Subject: [PATCH] Add taks for project setup and update dependencies --- .vscode/tasks.json | 18 ++++++++++++++++++ pyproject.toml | 3 +-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..fa6c685 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,18 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Setup project for development", + "type": "shell", + "command": "./venv/bin/python -m pip install -e .", + "problemMatcher": [] + }, + { + "label": "pip install -e bumble", + "type": "shell", + "command": "./venv/bin/python -m pip install -e ../bumble --config-settings editable_mode=compat" + } + ] +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e5ac358..166ab88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,7 @@ requires-python = ">= 3.11" version = '0.1' dependencies = [ - "bumble @git+https://git@gitea.pstruebi.xyz/auracaster/bumble_mirror.git@e027bcb57a0f29c82e3c02c8bb8691dcb91eac62", - #"auracast @git+https://git@gitea.pstruebi.xyz/auracaster/bumble-auracast", + "auracast @git+https://git@gitea.pstruebi.xyz/auracaster/bumble-auracast", "requests", "ollama", "aioconsole",