Python Project Generator
Generates a Python project structure with github actions for continuous integration and continuous deployment. Both pure Python projects and Python projects with Rust modules using PyO3 can be created.
Pure Python project included packages
For package managment choose between:
Dev packages:
- mypy for static type checking
- pytest for testing
- pytest-cov for test coverage reports
- ruff for linting and code formatting
Python project with Rust modules included packages
- maturin for package management
- mypy for static type checking
- pytest for testing
- pytest-cov for test coverage reports
- ruff for linting and code formatting
- PyO3 for managing the Rust/Python FFI
- justfile for running commands (to use this you will need to install just)
Installation
Install with cargo:
Install on Arch with the AUR:
Install on Debian/Ubuntu:
Note: Change the version to match the version you want to install.
Python Project Generator can also be installed with binaries provided with each release here, or with cargo.
How to use
Create a new project
From your terminal run:
You will be asked a series of questions that will be used to generate your project. The project
generator will check pypi for the lastest version of the included packages and use those while
generating the project. This feature can be disabled by using with either -s or
--skip-download-latest-packages when running the generator. If either there is an issue with
retrieving the latest versions or if you have decided to skip looking up the latest version, the
packages will be be created with default versions.
After running the generator a new directory will be created with the name you used for the
Project Slug. Change to this directory then install the python packages and pre-commit hooks.
Pure Python Projects
Install the Python dependencies when using Poetry.
Install the Python dependencies when using setuptools.
First create a virtual environment and activate it.
Install the Python dependencies when using uv.
First create a virtual environment and activate it.
Next create a lock file
Then install the dependencies
Install the pre-commit hooks.
PyO3 projects
First create a virtual environment and activate it.
Install the dependencies and build the rust module.
Install the pre-commit hooks.
Now your project is ready to use.
Save custom default values
You can specify default values for many of the project options. For example to save a default creator:
To see a full list of values that be set as defaults run:
To view the current saved defaults:
To remove custom defaults:
Information
just
just allows you to add project specific commands to the project that can be run from the command line. It is very similar to make but has the advantage of being cross platform compatable and purposee build for running commands.
As an example, if you have the following in the justfile (this is included with the default file
generated by this project):
@lint:
echo mypy
just --justfile {{justfile()}} mypy
echo ruff
just --justfile {{justfile()}} ruff
echo ruff-format
just --justfile {{justfile()}} ruff-format
@mypy:
uv run mypy meilisearch_python_sdk tests
@ruff:
uv run ruff check .
@ruff-format:
uv run ruff format meilisearch_python_sdk tests examples
Then you can run mypy, ruff check, and ruff format with:
You can also run all 3 with 1 just command:
Relase Drafter
The release drafter action automatically adds
the tile of the PR, who created it, and it's PR number to a draft GitHub release. By default the
release will get a patch version update. Adding a bug label will get a patch version update and
add it to the Bug section of the release notes. Adding an enhancement label to a PR will create
a release with a minor version bump, and a breaking-change label will create a major version bump.
The draft release will get the release version tag for the highest label applied to the merged PRs
in the release. PRs can be excluded from the release notes by applying a skip-changelog label to
the PR.
Contributing
If you are interested in contributing please see our contributing guide