| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
I think we need to change the files in https://github.com/commitizen-tools/commitizen_cz_template/tree/master/%7B%7Bcookiecutter.cz_name%7D%7D
also this should be categorized as a feature instead of a doc
Sorry, something went wrong.
| [build-system] | ||
| requires = ["poetry_core>=1.0.0"] | ||
| build-backend = "poetry.core.masonry.api" | ||
| requires = ["setuptools>=61"] |
There was a problem hiding this comment.
do we still need setuptools
Sorry, something went wrong.
There was a problem hiding this comment.
do i replace it uv_build ?
Sorry, something went wrong.
There was a problem hiding this comment.
sounds like a good idea
Sorry, something went wrong.
which files we need to change ? |
Sorry, something went wrong.
pyproject.toml and setup.py and etc. please take a look at how cookie-cutter works and you'll have a better idea. Thanks! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
This updates the commitizen_cz_template to follow newer Python packaging conventions:
Note on __init__.py
The previously added __init__.py is removed as part of this change.
With the new src/cz_*.py layout, entry points resolve from the installed module under src/, making __init__.py unnecessary.
Related to commitizen-tools/commitizen#1709