Metadata-Version: 2.1
Name: just-start
Version: 0.5.2
Summary: Just Start is a wrapper for Task Warrior with pomodoro support
Home-page: https://github.com/AliGhahraei/just-start/
License: GPL-3.0+
Author: Ali Ghahraei
Author-email: aligf94@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Provides-Extra: term
Provides-Extra: urwid
Requires-Dist: pexpect (>=4.6,<5.0)
Requires-Dist: pydantic (>=1.8.2,<2.0.0)
Requires-Dist: toml (>=0.10.0,<0.11.0)
Requires-Dist: urwid (>=2.0,<3.0); extra == "urwid"
Project-URL: Repository, https://github.com/AliGhahraei/just-start/
Description-Content-Type: text/x-rst

just-start
==========

|Build Status| |Coverage Status|

An app to defeat procrastination!

Introduction
------------

Just-Start is a to-do list application and productivity booster. It prevents
you from procrastinating (too much).

The program is a wrapper for TaskWarrior_ with a timer implementing the
`Pomodoro Technique`_ (time management). It also draws a bit of inspiration from
Omodoro_.

Features:

- Configurable pomodoro phase durations
- Support for multiple configurations (a.k.a. *locations*) based on the current time and day of the
  week
- Desktop notifications
- Block time-wasting sites while you’re working

Installation and usage
----------------------

Supported platforms:

- Linux
- macOS

Requirements:

- Python 3.6+
- TaskWarrior_ (latest)

Pick a client name from the table below and run:

.. code:: bash

    $ pip install just-start[<client_name>]
    $ just-start-<client_name>

So for the urwid client:

.. code:: bash

    $ pip install just-start-urwid
    $ just-start-urwid

Press h to see a list of available user actions.

Clients
-------

+--------------------+----------+------------------------------------------------------------+
|Name                |Framework |Notes                                                       |
+====================+==========+============================================================+
|urwid (recommended) |Urwid_    |Inspired by Calcurse_. Similar to a graphical               |
|                    |          |application, but in your terminal                           |
+--------------------+----------+------------------------------------------------------------+
|term                |Terminal  |Example client. Useful for seeing how to write a brand new  |
|                    |(none)    |one but not intended for continuous usage                   |
+--------------------+----------+------------------------------------------------------------+

Development
-----------

If you want to help out please install Poetry_, clone the repo and run:

.. code:: bash

    $ cd just-start/
    $ poetry install

This will ensure you have both the development and install dependencies.

You can also install the package in editable mode to test manually without having to run a build
after every change, but you'll need to generate a setup.py since projects using pyproject.toml alone
can't be used this way (see the note about editable mode in PEP517_ for more info). I use Dephell_
for this:

.. code:: bash

    $ cd just-start
    $ dephell deps convert --from=pyproject.toml --to=setup.py
    $ pip install -e just_start

Bug reports
-----------

Issues are tracked using `GitHub Issues`_

Running Tests
-------------

You just need Poetry_ and Tox_

.. code:: bash

    $ tox

.. |Build Status| image:: https://travis-ci.org/AliGhahraei/
   just-start.svg?branch=master
   :target: https://travis-ci.org/AliGhahraei/just-start
.. |Coverage Status| image:: https://codecov.io/gh/AliGhahraei/just-start/branch
   /master/graph/badge.svg
   :target: https://codecov.io/gh/AliGhahraei/just-start

.. _Calcurse: http://calcurse.org
.. _GitHub Issues: https://github.com/AliGhahraei/just-start/issues
.. _Omodoro: https://github.com/okraits/omodoro
.. _Poetry: https://poetry.eustace.io/docs/
.. _Pomodoro Technique: https://cirillocompany.de/pages/pomodoro-technique
.. _Taskwarrior: https://taskwarrior.org/
.. _Urwid: http://urwid.org/
.. _Tox: https://tox.readthedocs.io/en/latest/
.. _Dephell: https://github.com/dephell/dephell
.. _PEP517: https://www.python.org/dev/peps/pep-0517/#get-requires-for-build-sdist

