Metadata-Version: 2.1
Name: Pmdr
Version: 1.0.5
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
Requires-Dist: autopep8 (==1.6.0)
Requires-Dist: bleach (==4.1.0)
Requires-Dist: certifi (==2021.10.8)
Requires-Dist: charset-normalizer (==2.0.8)
Requires-Dist: click (==8.0.3)
Requires-Dist: colorama (==0.4.4)
Requires-Dist: docutils (==0.18.1)
Requires-Dist: idna (==3.3)
Requires-Dist: importlib-metadata (==4.8.2)
Requires-Dist: keyring (==23.3.0)
Requires-Dist: packaging (==21.3)
Requires-Dist: pkginfo (==1.8.1)
Requires-Dist: Pygments (==2.10.0)
Requires-Dist: pyparsing (==3.0.6)
Requires-Dist: readme-renderer (==30.0)
Requires-Dist: requests (==2.26.0)
Requires-Dist: requests-toolbelt (==0.9.1)
Requires-Dist: rfc3986 (==1.5.0)
Requires-Dist: six (==1.16.0)
Requires-Dist: toml (==0.10.2)
Requires-Dist: tqdm (==4.62.3)
Requires-Dist: twine (==3.6.0)
Requires-Dist: urllib3 (==1.26.7)
Requires-Dist: webencodings (==0.5.1)
Requires-Dist: zipp (==3.6.0)
Requires-Dist: playsound (==1.3.0) ; sys_platform == "darwin"
Requires-Dist: pyobjc (==8.1) ; sys_platform == "darwin"
Requires-Dist: playsound (==1.2.2) ; sys_platform == "win32"

Pmdr - CLI pomodoro timer.

The following command:

```
pmdr 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:

```cmd
pmdr start -bs --breaks
```

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

The following Command:

```cmd
pmdr 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.

```python
-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
```

Pmdr also comes with a few quick timers for ease of use:

```python
pmdr hour # minute timer

pmdr half # 30 minute timer
```

You can also set a custom timer with the following command:

```cmd
pmdr timer -m --minutes
```

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


