Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #105349
| From | Sam <python@net153.net> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Python boilerplate |
| Date | 2016-03-19 12:28 -0500 |
| Message-ID | <mailman.436.1458559712.12893.python-list@python.org> (permalink) |
| References | <17c30829-4d9e-49ab-ad93-acc217a55aee@googlegroups.com> |
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
Back to comp.lang.python | Previous | Next — Previous 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