You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Charles Reid c0466ab6c6 Merge branch 'master' of https://git.charlesreid1.com/charlesreid1/python-cli 6 years ago
cli in case of fire: git commit, git push, exit the building 6 years ago
tests in case of fire: git commit, git push, exit the building 6 years ago
.coveragerc add unrunnable code 7 years ago
.gitignore add pytest cache to .gitignore 6 years ago
.travis.yml add 3.6 7 years ago
LICENSE Initial commit 8 years ago
README.md Update 'README.md' 6 years ago
requirements.txt add clint requirement 7 years ago
setup.py add static data to package, add (no command) and (ls command) workflows 6 years ago

README.md

NOTES:

Build Status Coverage Status

python-cli-skeleton

A simple python command line interface skeleton project. Features support for:

  • travis-ci
  • coveralls
  • argparse
  • py.test (testing)

Installation

python setup.py install 

For development, use:

python setup.py develop

...and the program will be installed in-place, allowing you to edit the script files and test them from the command line.

Usage

The setup script will install the program as cli. You can invoke it using:

cli

To change the way the program is invoked, edit the cli/__init__.py file where you can set the __version__ and _program variables. The _program variable sets the commandline command (cli), and the program name. You may want to change the names of modules (folders) as well to reflect your program. You should change the entry_point part of the setup script to reflect any changes you make to folders/files:

entry_points="""
[console_scripts]
{program} = cli.cli:main
""".format(program = _program),

requirements.txt

Add any modules you want installed to the requirements.txt file. The setup file parses this file before installation. Currently, [clint](https://github.com/kennethreitz/clint) is the only requirement. It is a useful module for adding color, indenting, progress bars, and other useful things to command-line based programs.

travis-ci

A .travis.yml file is included and setup for Python. Testing is performed using Python 2.7 and 3.6. You will need to setup [travis-ci.org](travis-ci.org) to perform testing.

coveralls

Support for coveralls is build in using pytest-cov. Please see coveralls.io for more information. You may want to edit the .coveragerc file to fine tune how coverage is calculated.