Skip to content
This repository has been archived by the owner on Mar 14, 2021. It is now read-only.

Latest commit

 

History

History
59 lines (37 loc) · 1.2 KB

NOTES.md

File metadata and controls

59 lines (37 loc) · 1.2 KB

apparat_launcher notes

logo

Developing

Debugging

Usage: python -m pdb apparat_launcher.py

Pylint

Pylint is a linter for Python. Usage: pylint *.py

Travis CI

Travis CI can help doing automated builds after each commit to the repository. Repo needs a .travis.yml in the core folder https://travis-ci.org/profile/yafp

Documentation

Epydoc

Generating API documentation via epydoc

HTML Output

Usage: epydoc apparat_launcher/*.py --name=apparat_launcher --url=https://github.com/yafp/apparat_launcher --graph=classtree -v -o apidoc/

Building

Requirements.txt

Pre-Requirements

Usage: pip install pipreqs

Creation of requirements.txt

Usage: pipreqs /path/to/project

setup.py

Help

Usage: python setup.py --help python setup.py --help install

Tests

Usage: python setup.py test

Builds

Usage: python setup.py build

Install

Usage: python setup.py install

Sources