You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,17 +60,17 @@ uv run pytest -m interface -v
60
60
Three types of dependencies:
61
61
62
62
-**Core** (`[project.dependencies]`): Required, installed with `pip install maseval`. Keep minimal!
63
-
-**Optional** (`[project.optional-dependencies]`): Published for end users. Framework integrations like `smolagents`, `langgraph`.
63
+
-**Optional** (`[project.optional-dependencies]`): Published for end users. Framework integrations like `smolagents`, `langgraph`, plus convenience bundles like `all` and `examples`. Uses self-references (e.g., `maseval[all]`) to avoid duplication - this is a standard Python packaging feature.
64
64
-**Dev Groups** (`[dependency-groups]`): NOT published. Only for contributors. Tools like `pytest`, `ruff`, `mkdocs`.
65
65
66
66
```bash
67
67
# Add core dependency (use sparingly!)
68
68
uv add <package-name>
69
69
70
-
# Add optional dependency for end users
70
+
# Add optional dependency for end users (e.g., framework integrations)
71
71
uv add --optional <extra-name><package-name>
72
72
73
-
# Add development dependency (not published)
73
+
# Add development dependency (not published - dev tools only)
74
74
uv add --group dev <package-name>
75
75
76
76
# Remove any dependency
@@ -79,6 +79,17 @@ uv remove <package-name>
79
79
80
80
**Important:**`uv add` automatically updates both `pyproject.toml` and `uv.lock`. Never edit lockfile manually.
0 commit comments