Automate project creation following ML best practices.
- License: MIT license
This is an "all inclusive" sort of template.
-
Choice of various licenses.
-
Pytest for testing Python 3.10.
-
Optional support for creating a tests matrix out of dependencies and Python versions.
-
Codecov for coverage tracking.
-
Documentation with Sphinx, ready for ReadTheDocs.
-
Configurations for:
- bumpversion (bump2version required)
- ruff for linting and formatting your code.
Projects using this template have these minimal dependencies:
- Cookiecutter - just for creating the project.
- Setuptools - for building the package, wheels, etc. Nowadays Setuptools is widely available, it shouldn't pose a problem :)
To get quickly started on a new system, just install setuptools and then install pip. That's the bare minimum required to install Hatch and Cookiecutter. To install them, just run this in your shell or command prompt:
pip install cookiecutter
This template is more involved than the regular cookiecutter-pypackage.
First generate your project:
cookiecutter gh:FragileTech/mloq-template
You will be asked for these fields:
Note: Fields that work together usually use the same prefix. If you answer "no" on the first one, then the rest won't have any effect so just ignore them. Maybe in the future Cookiecutter will allow option hiding or something like a wizard.
Default:
"Guillem Duran Ballester"
Main author of this library or application (used in AUTHORS.md
and pyproject.toml
).
Can be set in your ~/.cookiecutterrc
config file.
Default:
Contact email of the author (used in AUTHORS.md
and pyproject.toml
).
Can be set in your ~/.cookiecutterrc
config file.
Default:
"fragile.tech"
Website of the author (used in AUTHORS.md
).
Can be set in your ~/.cookiecutterrc
config file.
Default:
"FragileTech"
Repository username of this project (used for repository link).
Can be set in your ~/.cookiecutterrc
config file.
Default:
"MLOQ Template"
Verbose project name, used in headings (docs, README, etc).
Default:
"github.com"
Use "no"
for no hosting (various links will disappear). You can also use "gitlab.com"
and such, but various things will be broken.
Default:
"mloq-template"
Repository name on hosting service (and project's root directory name).
Default:
"mloq_template"
Python package name (whatever you would import).
Default:
"mloq-template"
PyPI distribution name (what you would pip install
).
Default:
"core"
This template assumes there's going to be an "implementation" module inside your package.
Default:
"Automate project creation following ML best practices."
One-line description of the project (used in README.md
and pyproject.toml
).
Default:
"today"
Release date of the project (ISO 8601 format), defaults to today (used in CHANGELOG.md
).
Default:
"2024"
Copyright start year.
Default:
"2024"
Copyright end year.
Default:
"0.1.0"
Release version (see .bumpversion.cfg
and in Sphinx conf.py
).
Default:
"click"
Option to enable a CLI (a bin/executable file). Available options:
plain
- a very simple command.argparse
- a command implemented withargparse
.click
- a command implemented with click - which you can use to build more complex commands.no
- no CLI at all.
Default:
"mloq-template"
Name of the CLI bin/executable file (set the console script name in pyproject.toml
).
Default:
"MIT license"
License to use. Available options:
- MIT license
- BSD 2-Clause License
- BSD 3-Clause License
- ISC license
- Apache Software License 2.0
- GNU Lesser General Public License v3 or later (LGPLv3+)
- GNU Lesser General Public License v3 (LGPLv3)
- GNU Lesser General Public License v2.1 or later (LGPLv2+)
- GNU Lesser General Public License v2.1 (LGPLv2)
- no
What license to pick? https://choosealicense.com/
Default:
"yes"
Enable pushing coverage data to Codecov and add badge in README.md
.
Default:
"yes"
Have Sphinx documentation.
Default:
"https://mloq-template.readthedocs.io/"
Leave as default if your documentation will be hosted on ReadTheDocs. If your documentation will be hosted elsewhere (such as GitHub Pages or GitLab Pages), enter the top-level URL.
Default:
"yes"
By default, this will insert links to your project's page on PyPI.org. If you choose "no"
, then these links will not be created.
Default:
"no"
If you specifically want to be sure your package will never be accidentally uploaded to PyPI, you can pick "yes"
.
To format and lint the code:
rye run style
To run all the tests, just run:
rye run test
To see all the Hatch environments:
rye run hatch env show
To only build the docs:
rye run build-docs
To build and verify that the built package is proper and perform other code QA checks:
rye run check
Before releasing your package on PyPI, you should have all the tests in the different environments passing.
This template provides a basic bumpversion configuration. It's as simple as running:
bumpversion patch
to increase version from1.0.0
to1.0.1
.bumpversion minor
to increase version from1.0.0
to1.1.0
.bumpversion major
to increase version from1.0.0
to2.0.0
.
You should read Semantic Versioning 2.0.0 before bumping versions.
TODO
See CHANGELOG.md.
There's no Makefile?
Sorry, no Makefile
yet. The Hatch environments stand for whatever you'd have in a Makefile
.
Why is the version stored in several files (pkg/__init__.py
, pyproject.toml
, docs/conf.py
)?
We cannot use a metadata/version file1 because this template is to be used with both distributions of packages (dirs with __init__.py
) and modules (simple .py
files that go straight into site-packages
). There's no good place for that extra file if you're distributing modules.
But this isn't so bad—bumpversion manages the version string quite neatly.
No way, this is the best. 😜
If you have criticism or suggestions, please open up an Issue or Pull Request.
Footnotes
-
Example, an
__about__.py
file. ↩