Python boilerplate

Sam python at net153.net
Sat Mar 19 13:28:40 EDT 2016


On 03/19/2016 07:43 AM, Fernando Felix do Nascimento Junior wrote:
> A simple boilerplate for those who don't know the structure of a project. https://goo.gl/lJRvS6
>
> ## Features
>
> * Build and distribute with setuptools
> * Check code style with flake8
> * Make and run tests with pytest
> * Run tests on every Python version with tox
> * Code coverage with coverage.py
>
> ## Structure
>
> Structure of the project in tree format.
>
> ├── CONTRIBUTING.md
> ├── LICENSE
> ├── Makefile
> ├── MANIFEST.in
> ├── module_name.py
> ├── README.md
> ├── requirements
> │   ├── dev.txt
> │   └── prod.txt
> ├── requirements.txt
> ├── setup.cfg
> ├── setup.py
> ├── tests.py
> └── tox.ini
>
> Fernando Felix
>


There is this too: https://pypi.python.org/pypi/python_boilerplate_template


--Sam



More information about the Python-list mailing list