Metadata-Version: 1.1
Name: todone
Version: 0.1.1
Summary: Todo list manager and agenda
Home-page: https://github.com/safnuk/todone
Author: Brad Safnuk
Author-email: safnuk@gmail.com
License: Apache-2.0
Description: Todone
        ======
        
        Command-line todo list manager and agenda, inspired by taskwarrior,
        todo.sh, and some basic features from org-mode.
        
        Installation
        ------------
        
        The easiest way to install todone is through PyPi:
        
        .. code-block:: console
        
            $ pip3 install todone
        
        If you prefer, it can be installed by cloning the git repository:
        
        .. code-block:: console
        
            $ git clone https://github.com/safnuk/todone.git
            $ cd todone
            $ python3 setup.py install
        
        Basic Setup
        -----------
        
        Before using todone, you need to tell it where to store the data. Type
        
        .. code-block:: console
        
            $ todone setup init
        
        and answer the questions. The default is to create a sqlite database
        file. You are now ready to start tracking your todo items!
        
        Usage
        -----
        
        To enter a new todo item, type
        
        .. code-block:: console
        
            $ todone new This is my todo item
        
        By default, it will put the todo into the inbox/ folder. You can prepend
        the item with a different folder:
        
        .. code-block:: console
        
            $ todone new today/More important todo
        
        List your todos by folder, keyword search, etc.
        
        .. code-block:: console
        
            $ todone list todo
        
            1 - inbox/This is my todo item
            2 - today/More important todo
        
            $ todone list today/
        
            1 - today/More important todo
        
            $ todone move 1 done/
        
            $ todone list todo
        
            1 - inbox/This is my todo item
        
        More comprehensive help is available from the command line
        
        .. code-block:: console
        
            $ todone help
        
        gives a general overview, while
        
        .. code-block:: console
        
            $ todone help <command>
        
        gives more specific help on a given command.
        
        Most commands can be entered short hand. For example,
        
        .. code-block:: console
        
            $ todone new today/My todo
            $ todone n to/My todo
            $ todone ne t/ My todo
        
        are all parsed identically by the program.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
