Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 558 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 558 Bytes

A good starting point for a new python project. Uses pytest for testing.General idea from Learn Python the hard way.

To use:

  1. Fork repo as new project
  2. mkvirtualenv project
  3. pip install -r requirements.txt
  4. pip install -e . >>> See: pytest docs on error
  5. pytest should return one successful test
  6. Change the package name, update setup.py, etc.