Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ The plugin can be configured through the `pyproject.toml` file. Configure plugin

```
[tool.hatch.build.targets.wheel.hooks.decorators]
dependencies = ["reqstool-hatch-plugin == <version>"]
dependencies = ["reqstool-python-hatch-plugin == <version>"]
path = ["src","tests"]

```
It specifies that the reqstool-hatch-plugin is a dependency for the build process, and it should be of a specific version.
It specifies that the reqstool-python-hatch-plugin is a dependency for the build process, and it should be of a specific version.

Further it defines the paths where the plugin should be applied. In this case, it specifies that the plugin should be applied to files in the src and tests directories.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ dependencies = ["reqstool-python-hatch-plugin == <version>"]
path = ["src","tests"]

```
It specifies that the reqstool-hatch-plugin is a dependency for the build process, and it should be of a specific version.
It specifies that the reqstool-python-hatch-plugin is a dependency for the build process, and it should be of a specific version.

Further it defines the paths where the plugin should be applied. In this case, it specifies that the plugin should be applied to files in the src and tests directories.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ classifiers = [
requires-python = ">=3.10"

dependencies = [
"reqstool-python-decorators == 0.0.3",
"reqstool-python-decorators == 0.0.4",
"ruamel.yaml==0.18.6",
"hatchling>=1.20.0",
]
Expand Down