Creates the skeleton of your Python project.
Project description
If you are like me, starting a new Python project from the scratch can be boring: create a setup.py, documentation, installation instructions, forget a file or two in the manifest, etc. This all is a time-consuming and error prone work, which gives no intellectual satisfaction. Yet, this is necessary to make your project a good citizen in the open source community.
Boilerplate produces beautiful skeletons for your Python projects so you can get up and running fast. It is influenced by this blog post: http://jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/, although we do not follow these recommendations by the letter.
The filesystem structure
The boilerplate start <project> command will create the following tree under the current directory:
. |- .gitignore |- LICENSE |- MANIFEST.in |- INSTALL.rst |- README.rst |- VERSION |- requirements.txt |- requirements-dev.txt |- setup.py |- docs/ | |- conf.py | |- index.rst | |- make.bat | |- Makefile | |- _static/* | \- _templates/* \- src/ \- <project> |- __init__.py |- __meta__.py |- <project>.py \- test/ |- __init__.py \- test_<project>.py
setup.py
src/*
docs/*
README.rst and INSTALL.rst
VERSION
requirements.txt
MANIFEST.in
LICENSE
.gitignore
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-boilerplate-0.2.2.tar.gz
.
File metadata
- Download URL: python-boilerplate-0.2.2.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d08c9e8c17bc98ab4138427fd4171293a29f75adbf55e23728a4b500e7b8508e |
|
MD5 | b2d0291b251ab384186fc8e22877b86c |
|
BLAKE2b-256 | a9d39aa0ab369b8e5b73e874ee01e5adbf88a3abede61a82bf9be0056b2045ef |