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
{{ message }}
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
Especially for private projects, there is not always a huge separation between python code and packaging, so in most cases we have a pyproject.toml with all the information redundant in the recipe.yaml.
Now that the recipe.yaml format is a valid YAML subset, there are two features I'd like for that:
Then, it'd be easily possible to later refer to the project's metadata as a single source of truth with e.g. name: "{{ pyproject.project.name }}".
Would it make sense to also being able to parse the whole recipe from a section in the pyproject.toml, like [tool.boa.recipe]? This could look somewhat like this:
Especially for private projects, there is not always a huge separation between python code and packaging, so in most cases we have a
pyproject.toml
with all the information redundant in therecipe.yaml
.Now that the recipe.yaml format is a valid YAML subset, there are two features I'd like for that:
{% set data = load_setup_py_data() %}
is outlined. Now that pyproject.toml becomes a common file format, I think it would be nice to have e.g. apyproject
field in the context automatically, or e.g. being able to specify it e.g. like this:name: "{{ pyproject.project.name }}"
.pyproject.toml
, like[tool.boa.recipe]
? This could look somewhat like this:The text was updated successfully, but these errors were encountered: