A python cookiecutter application to create a new python project that uses poetry to manage its dependencies.
Project description
Cookiecutter Poetry
This is a cookiecutter repository to generate the file structure for a Python project that uses Poetry for its dependency management.
Features
- Poetry, obviously.
- CI/CD with GitHub Actions
- Formatting with black and isort
- Publishing to Pypi or Artifactory by creating a new release on GitHub
- Testing with pytest
- Documentation with MkDocs
- Static type checking with mypy
- Compatibility testing for multiple versions of Python with Tox
Example CI/CD Pipeline
Quickstart
On your local machine, navigate to the directory in which you want to create a project directory, and run the following two commands:
pip install cookiecutter-poetry
ccp
Alternatively, install cookiecutter
and directly pass the URL to this
Github repository to the cookiecutter
command:
pip install cookiecutter
cookiecutter https://github.com/fpgmaas/cookiecutter-poetry.git
Then run the following commands, replacing <project-name>
, with the
name that you also gave the Github repository and
<github_author_handle>
with your Github username.
cd <project_name>
git init -b main
git add .
git commit -m "Init commit"
git remote add origin git@github.com:<github_author_handle>/<project_name>.git
git push -u origin main
Finally, install the environment with make install
.
You are now ready to start development on your project! The CI/CD pipeline will be triggered when you open a pull request, merge to main, or when you create a new release.
To finalize the set-up for publishing to PyPi or Artifactory, see here. For activating the automatic documentation with MkDocs, see here.
Acknowledgements
This project is partially based on Audrey Feldroy's's great cookiecutter-pypackage repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for cookiecutter-poetry-0.2.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e798e13ff9aff7343f5589233b909b6ca2c15586401d63a332f96f5b1687069d |
|
MD5 | ea094a1108a6d3e4439a5acb065d5ce1 |
|
BLAKE2b-256 | abbd5de61e4318d6967ea71cfcf4e8cb4e9f87b748d08ff2d1013fc315989e98 |
Hashes for cookiecutter_poetry-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b023210ff73a5eeed80eedcb98d894b8ae1b09a07d9d7eace6d6820103897b9 |
|
MD5 | af5a188f4d9b6399f25752c09d659970 |
|
BLAKE2b-256 | 447f6d1cd2f9206cfde1d5683afce9226aa6513cce5e2f8489f64d54f67c7f5c |