restechnica / semverbot

A CLI which automates semver versioning.
Mozilla Public License 2.0
133 stars 6 forks source link

[FEAT] Add support for pyproject.toml #38

Open ToneVDB opened 2 years ago

ToneVDB commented 2 years ago

It would be nice that instead of having a dedicated .semverbot.toml file in python repo's, we could add to the existing pyproject.toml file

eg pyproject.toml :

[tool.semverbot]
mode = "auto"

[tool.semverbot.config]
patch = ["fix", "bug"]
minor = ["feature", "feat"]
major = ["release"] 

This would possibly simplify the repo. Open for suggestions / concerns / ...