cookiecutter-pypackage
cookiecutter-pypackage copied to clipboard
Cookiecutter template for a Python package.
May-be I'm missing something here, but this "requirements_DEV.txt" hurts my eyes and I don't get the use of that "_dev" suffix?! Plus, this file is somewhat obsolete with pipenv, no?...
The test should do 2 things: - show what the code lacked before the changes - prove that everything works after the changes
The "getting started" instructions show the detailed bash commands to perform tests, linting etc. Users should be taught there are handy/no-brainer make rules which take care of everything! Also those...
Also lint a bit by moving the urls to the end of the file.
Hello! I love this template. While using it at a pycon tutorial, I noticed that it doesn't have a `__main__.py`, so it's not possible to run `python -m package_name`. I...
Fixes #417 - [ ] This is missing tests - [ ] missing codecov.yaml, example ``` # https://codecov.io/gh/lektor/lektor/ comment: false coverage: precision: 2 range: - 70.0 - 100.0 round: down...
* Date you used Cookiecutter PyPackage: Dec 10-12, 2018 * Cookiecutter version used, if any: 1.60 * Python version, if any: Python3.5 (and Python 3.7) * Operating System: MacOSX (and...
* Date you used Cookiecutter PyPackage: 2018-09-18 * Cookiecutter version used, if any: 1.6.0 * Python version, if any: 3.6 ### Description I want to add pytest-cov but travis builds...
* Date you used Cookiecutter PyPackage: 4/6/2018 * Cookiecutter version used, if any: 1.6.0 * Python version, if any: 3.6.5 * Operating System: Arch Linux ### Description I ran and...
Currently the template suggests using setup_requires: https://github.com/audreyr/cookiecutter-pypackage/blob/f1e9c655b56ec1061f8f7bab5a5bdeef0f4da41a/%7B%7Bcookiecutter.project_slug%7D%7D/setup.py#L62 I think this is a footgun, since setup_requires interacts badly with pip. In particular, it uses easy_install to install packages if they're needed....