Metadata-Version: 2.1
Name: Pmdr
Version: 0.0.2
Summary: CLI Pomodoro Timer
Home-page: https://github.com/JDSalisbury/doro
Author: Jeff Salisbury
Author-email: salisbury.jeffery@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

Doro - CLI pomodoro timer.

The following command:

```
doro start
```

Will give you a classic Pomodoro timer with 4 Pomodoros(25min of Focus followed by a 5 min break), and after 4, you shall get a Longer break of 30min.

With the following command:

```
doro start -bs --breaks
```

You can set the number of long breaks needed to complete your tasks!

The following Command:

```
doro custom
```

Can be used to build out your own timer how you see fit.
The following flags can be used to build your own custom pomodoro timer setup.

```
-f --focus # Focus time, default 25min
-s --short # Break time after every Focus time, default 5min
-l --long # Long break, default 25min
-bs --breaks # Number of long breaks to take, default 4
```

Create your own CLI tools: [Tutorial](https://medium.com/nerd-for-tech/how-to-build-and-distribute-a-cli-tool-with-python-537ae41d9d78)


