diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index e52b9a5..0000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(Get-ChildItem -Recurse -Depth 2)", - "Bash(Select-Object FullName)" - ] - } -} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index aa9a7e4..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Run tests - -on: [push] - -jobs: - - test: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.12"] - env: - PIP_ROOT_USER_ACTION: ignore - UV_LINK_MODE: copy - - steps: - - - uses: actions/checkout@v4 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install uv - uv sync --locked - - - name: Check format with ruff - run: | - uv run ruff format --check - - - name: Check code linting with ruff - run: | - uv run ruff check diff --git a/.gitignore b/.gitignore index 414b3d7..91d7631 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,7 @@ data/** # User-specific config (copy from *.example.* files) config/config.yaml -config/clips.txt \ No newline at end of file +config/clips.txt + +# Notebooks +notebooks/ diff --git a/data/.gitkeep b/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/notebooks/.gitkeep b/notebooks/.gitkeep deleted file mode 100644 index e69de29..0000000