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
When you declare this in the pyproject.toml file, you are specifying the required versions for the dependency of the Reqstool Decorators. This ensures that the correct version of the dependencies are used when installing and running your project.
@@ -33,13 +34,23 @@ The plugin can be configured through the `pyproject.toml` file. Configure plugin
And under `requires` in `[build-system]` you need to add the plugin with the version, see example;
44
+
45
+
```toml
46
+
[build-system]
47
+
requires = [
48
+
"hatchling",
49
+
"reqstool-python-hatch-plugin==<version>",
50
+
]
51
+
```
52
+
53
+
43
54
It specifies that the reqstool-python-hatch-plugin is a dependency for the build process, and it should be of a specific version.
44
55
45
56
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.
0 commit comments