Template tool for putting up the scaffold of a Python project
Project description
PyScaffold helps you to easily setup a new Python project, it is as easy as:
putup my_project
This will create a new folder my_project containing a perfect project template with everything you need for some serious coding.
Type putup -h to learn about more configuration options. PyScaffold assumes that you have Git installed and set up on your PC, meaning at least your name and email configured. The project template in my_project provides you with following features:
Configuration & Packaging
All configuration can be done in setup.cfg like changing the description, url, classifiers and even console scripts of your project. That means in most cases it is not necessary to tamper with setup.py.
In order to build a source, binary or wheel distribution, just run python setup.py sdist, python setup.py bdist or python setup.py bdist_wheel.
Package and Files Data
Additional data, e.g. images and text files, inside your package can be configured under the [files] section in setup.cfg. It is not necessary to have a MANIFEST.in file for this to work.
Complete Git Integration
Your project is already an initialised Git repository and setup.py uses the information of tags to infer the version of your project with the help of setuptools_scm. To use this feature you need to tag with the format MAJOR.MINOR[.PATCH] , e.g. 0.0.1 or 0.1. Run python setup.py --version to retrieve the current PEP440-compliant version. This version will be used when building a package and is also accessible through my_project.__version__.
Unleash the power of Git by using its pre-commit hooks. This feature is available through the --with-pre-commit flag. After your project’s scaffold was generated, make sure pre-commit is installed, e.g. pip install pre-commit, then just run pre-commit install.
It goes unsaid that also a default .gitignore file is provided that is well adjusted for Python projects and the most common tools.
Sphinx Documentation
Build the documentation with python setup.py docs and run doctests with python setup.py doctest. Start editing the file docs/index.rst to extend the documentation. The documentation also works with Read the Docs.
The Numpy and Google style docstrings are activated by default. Just make sure Sphinx 1.3 or above is installed.
Unittest & Coverage
Run python setup.py test to run all unittests defined in the subfolder tests with the help of py.test and pytest-runner. Some sane default flags for py.test are already defined in the [pytest] section of setup.cfg. The py.test plugin pytest-cov is used to automatically generate a coverage report. It is also possible to provide additional parameters and flags on the commandline, e.g., type:
python setup.py test --addopts -h
to show the help of py.test.
JUnit and Coverage HTML/XML
For usage with a continuous integration software JUnit and Coverage XML output can be activated in setup.cfg. Use the flag --with-travis to generate templates of the Travis configuration files .travis.yml and tests/travis_install.sh which even features the coverage and stats system Coveralls. In order to use the virtualenv management and test tool Tox the flag --with-tox can be specified.
Management of Requirements & Licenses
Add the requirements of your project to requirements.txt and test-requirements.txt which will be automatically used by setup.py. This also allows you to easily customize a plain virtual environment with:
pip install -r requirements.txt -r test-requirements.txt
All licenses from choosealicense.com can be easily selected with the help of the --license flag.
Easy Updating
Keep your project’s scaffold up-to-date by applying putput --update my_project when a new version of PyScaffold was released. An update will only overwrite files that are not often altered by users like setup.py. To update all files use --update --force. An existing project that was not setup with PyScaffold can be converted with putup --force existing_project. The force option is completely safe to use since the git repository of the existing project is not touched!
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
Built Distribution
File details
Details for the file PyScaffold-2.5.5b2.tar.gz
.
File metadata
- Download URL: PyScaffold-2.5.5b2.tar.gz
- Upload date:
- Size: 257.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 509b06431feae19749a54fca8a57ee8775a44d2a8848d1aee243d8d279cbbc3a |
|
MD5 | 9f32242bfc539d396dacf0276880c660 |
|
BLAKE2b-256 | a8235d9c9a9d857a27e0f86836f9f5272c5444b4d0d23a0e0c2c3ae504515e31 |
File details
Details for the file PyScaffold-2.5.5b2-py2.py3-none-any.whl
.
File metadata
- Download URL: PyScaffold-2.5.5b2-py2.py3-none-any.whl
- Upload date:
- Size: 319.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0fdcb9cfb2cb579ce3b7bc062aab967ac60aa16a36de429dcb9c04f7b5bf5e7 |
|
MD5 | 20e1d9588d1b56488399ba72448b73fb |
|
BLAKE2b-256 | 423eb57b86ead50d250780325ca4e059270e15da608ee97b515a616a84f75ad8 |