Metadata-Version: 2.1
Name: pythonspt
Version: 1.0.0b1
Summary: Simple pomodoro timer written in Python
Home-page: https://github.com/irizwaririz/pyspt
Author: John Carlo Roberto
Author-email: 10111643+Irizwaririz@users.noreply.github.com
Keywords: console,timer,pomodoro,pyspt,productivity
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5, <4
Description-Content-Type: text/markdown
License-File: LICENSE

# pyspt - python simple pomodoro timer

pyspt is a simple terminal timer that uses the pomodoro technique.

![screenshot](https://github.com/irizwaririz/pyspt/raw/main/screenshot.png)

## Usage

```
$ python3 -m pyspt.py -h

usage: pyspt.py [-h] [-p POMODORO] [-sb SHORT_BREAK] [-lb LONG_BREAK] [-lbi LONG_BREAK_INTERVAL]

A simple terminal timer that uses the pomodoro technique.

options:
  -h, --help            show this help message and exit
  -p POMODORO, --pomodoro POMODORO
                        Pomodoro duration in minutes (default: 25)
  -sb SHORT_BREAK, --short-break SHORT_BREAK
                        Short break duration in minutes (default: 5)
  -lb LONG_BREAK, --long-break LONG_BREAK
                        Long break duration in minutes (default: 15)
  -lbi LONG_BREAK_INTERVAL, --long-break-interval LONG_BREAK_INTERVAL
                        Long break interval (default: 3)
```
