I'm giving a shot to the pyproject.toml
file, and I'm stuck on this simple task. Consider the following optional dependencies:
[project.optional-dependencies]
style = ["black", "codespell", "isort", "flake8"]
test = ["pytest", "pytest-cov"]
all = ["black", "codespell", "isort", "flake8", "pytest", "pytest-cov"]
Is there a way to avoid copy/pasting all the optional-dep in the all
key? Is there a way to do all = style + test
at least?
all = ["myproject[style,test]"]
– Unmoved