python-best-practices-cookiecutter icon indicating copy to clipboard operation
python-best-practices-cookiecutter copied to clipboard

Python best practices project cookiecutter 🍪

Results 14 python-best-practices-cookiecutter issues
Sort by recently updated
recently updated
newest added

Formerly this template only produced programs, now it will remove __main__.py if not specified as a binary. I use the term binary just to refer to executable, a better name...

Pull Request #21 refactored by [Sourcery](https://sourcery.ai/github/). Since the original Pull Request was opened as a fork in a contributor's repository, we are unable to create a Pull Request branching from...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

## Description See #18 for details. **TL;DR**: `black 20.8b1` does not work with new versions of `click`. Updating the template to use a newer version of `black`.

## Description This **cookiecutter** template will generate a repository that uses `black v20.8b1`. According to this [issue](https://github.com/psf/black/issues/2964), this version of `black` is not compatible with newer versions of `click` and...

Creating this issue for a PR I'd like to submit. Instead of using pipenv, an approach my team and I have been enjoying moreso recently has been to create a...

This commit add a number of quality of life improvements, including Badges - license, formatting, GitHub actions, code coverage Black - with line-length selection option Code coverage - uses Codecov.io...

A feature request instead of an issue, but it would be nice if we could have cookiecutter prompt the user to choose pipenv or [poetry](https://python-poetry.org/). Poetry uses the upcoming "standard"...

As of isort 5.0 (released July 4, 2020), the `--recursive` flag is no longer necessary. Adding results in the following warning: `/home/runner/.local/share/virtualenvs/spectra-KcgPObjh/lib/python3.9/site-packages/isort/main.py:1206: UserWarning: W0501: The following deprecated CLI flags were...

Add optional uploading of the code coverage report to codecov.io Sample change to `.github/workflows/test.yml` ``` < - run: pipenv run pytest --cov --cov-fail-under=100 --- > - run: pipenv run pytest...