Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #105267
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2016-03-19 05:43 -0700 |
| Message-ID | <17c30829-4d9e-49ab-ad93-acc217a55aee@googlegroups.com> (permalink) |
| Subject | Python boilerplate |
| From | Fernando Felix do Nascimento Junior <fernandojr.ifcg@live.com> |
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
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Python boilerplate Fernando Felix do Nascimento Junior <fernandojr.ifcg@live.com> - 2016-03-19 05:43 -0700
Re: Python boilerplate Fernando Felix do Nascimento Junior <fernandojr.ifcg@live.com> - 2016-03-20 16:36 -0700
Re: Python boilerplate Chris Warrick <kwpolska@gmail.com> - 2016-03-21 17:03 +0100
Re: Python boilerplate Sam <python@net153.net> - 2016-03-19 12:28 -0500
csiph-web