Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #105367
| From | Chris Warrick <kwpolska@gmail.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Python boilerplate |
| Date | 2016-03-21 17:03 +0100 |
| Message-ID | <mailman.445.1458576196.12893.python-list@python.org> (permalink) |
| References | <17c30829-4d9e-49ab-ad93-acc217a55aee@googlegroups.com> <mailman.390.1458395668.12893.python-list@python.org> <61c94e82-8bcc-4855-a856-468bcadfe486@googlegroups.com> |
On 21 March 2016 at 00:36, Fernando Felix do Nascimento Junior <fernandojr.ifcg@live.com> wrote: > I made the boilerplate with intent that everyone can understand, download and use quickly. So, I didn't put extra dependence like cookiecutter (that depends jinja, that depends markupsafe) to **just** replace fields and then run the project. I used “replace manually” before, and it was painful. > I also preferred to use .md instead .rst because it's more clean in my opinion and used by default in platforms like GitHub and Stackoverflow. See mkdocs to generate documentation with markdown. The vast majority of the Python community uses Sphinx and reST. In fact, that’s the only thing accepted on readthedocs.org, which is a popular documentation platform. > I didn't understand why packages are best than modules... both can be reusable and not every project needs packages. It might not need it today, but it will probably grow. At which point you will notice that a module is not enough. You can also easily separate code with packages. -- Chris Warrick <https://chriswarrick.com/> PGP: 5EAAEA16
Back to comp.lang.python | Previous | Next — Previous in thread | 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