Opinionated Python template for new packages.
- Go to or create the package folder.
- Get the template files:
npx degit github:joaopalmeiro/template-python-package
or
npx degit github:joaopalmeiro/template-python-package --force
- Search for
template-python-package
and replace it with the package name. Ignore the template repository URL in the NOTES.md file. - Search for
template_python_package
and replace it with the underscored version of the package name. - Search for
Opinionated Python template for new packages.
and replace it with the (short) package description. - Search for
João Palmeiro
and replace it with the author's name. - Search for
[email protected]
and replace it with the author's email address. - Open the pyproject.toml file and add the package-specific dependencies. See the
Dependency configuration
andEnvironment configuration
pages in the Hatch documentation for more information (if necessary). - Update the
Source code
link at the top to the package repository link (if necessary). - Change
GitHub
in theDeployment
section toGitLab
orCodeberg
and update the link to the corresponding Tags page (if necessary). - Update the
Issues
andSource
fields in the pyproject.toml file with their respective repository-related links (if necessary). - Remove
hatch-demo/
from the .gitignore file. - Delete the TEMPLATE.md file.
- Delete the
Getting Started
section.
Install pyenv (if necessary).
pyenv install && pyenv versions
pip install hatch==1.12.0 && hatch --version
hatch config set dirs.env.virtual .hatch
hatch config show
hatch env create
hatch status
hatch env show
hatch dep show table
hatch run qa:lint
hatch run qa:format
hatch project metadata
hatch version micro
hatch version minor
hatch version major
hatch build --clean
echo "v$(hatch version)" | pbcopy
- Commit and push changes.
- Create a tag on GitHub Desktop.
- Check GitHub.
hatch publish
- Check PyPI.