Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 868 Bytes

README.md

File metadata and controls

44 lines (34 loc) · 868 Bytes

PyPomodoro

Displays a full screen Pomodoo timer in your terminal.

Installation

pip install pypomodoro

Screenshot

Screenshot

Usage

pypomodoro [-h] [-w WORK_MINS] [-b BREAK_MINS] [-v] [--version]

optional arguments:
  -h, --help            show this help message and exit
  -w WORK_MINS, --work WORK_MINS
                        Number of miinutes for work
  -b BREAK_MINS, --break BREAK_MINS
                        Number of minutes for break
  -v, --verbose         Move detailed display
  --version             show program's version number and exit

Development

Create virtual env and install dev dependencies

make init

Run tests in venv

make test

Install the package and run the app in venv

make install
make run