mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-13 10:57:13 +00:00
244a266c06
* chore: declare pytest as a uv dev dependency The contributing guide currently tells contributors `pip install pytest` as a separate step, and CI does the same. Move pytest into PEP 735 `[dependency-groups]` so it's declared in pyproject.toml and `uv sync` installs it by default (no `--with` workaround, no separate install line). Update CI to use astral-sh/setup-uv + `uv sync` + `uv run pytest`, and refresh the Contributing section of the README to match. `[dependency-groups]` is the right home (vs `[project.optional-dependencies]`) because pytest is dev-only and shouldn't appear in the published wheel's optional features list alongside things like `pdf` or `mcp`. * remove uv.lock from gitignore
29 lines
368 B
Plaintext
29 lines
368 B
Plaintext
venv/
|
|
.venv/
|
|
env/
|
|
__pycache__/
|
|
*.pyc
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
*.so
|
|
*.egg
|
|
.graphify/
|
|
graphify-out/
|
|
.graphify_*.json
|
|
.graphify_python
|
|
.claude/
|
|
skills/
|
|
docs/superpowers/
|
|
.vscode/
|
|
openspec/
|
|
# Local benchmark scripts — never commit
|
|
scripts/run_k2_*.py
|
|
scripts/llm.py
|
|
scripts/benchmark_kimi*.json
|
|
scripts/benchmark_kimi*.py
|