Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ pip-wheel-metadata/

# pytest-benchmark
.benchmarks/

# Claude Code local settings
.claude/settings.local.json
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.9"

dynamic = ["version"]
[project.optional-dependencies]
[dependency-groups]
dev = ["pre-commit", "tox"]
testing = ["pytest", "pytest-benchmark", "coverage"]


[tool.setuptools]
packages = ["pluggy"]
package-dir = {""="src"}
Expand Down Expand Up @@ -67,6 +68,9 @@ lines-after-imports = 2

[tool.setuptools_scm]

[tool.uv]
default-groups = ["dev", "testing"]

[tool.towncrier]
package = "pluggy"
package_dir = "src/pluggy"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ commands=
setenv=
_PYTEST_SETUP_SKIP_PLUGGY_DEP=1
coverage: _PLUGGY_TOX_CMD=coverage run -m pytest
extras=testing
dependency_groups=testing
deps=
coverage: coverage
pytestmain: git+https://github.com/pytest-dev/pytest.git@main
Expand Down
Loading