Metadata-Version: 2.1
Name: Gask
Version: 0.4
Summary: A git backed task management system
Home-page: https://github.com/RyanVanDijck/Gask
Author: ryan
Author-email: rvandijck02@outlook.com
License: GNU General Public License v3
Description: # Gask
        
        ## Technical documentation
        
        * [Commands](https://github.com/RyanVanDijck/Gask/blob/main/gask/commands/commands.md)
        * [FileUtils](https://github.com/RyanVanDijck/Gask/blob/main/gask/fileutils/fileutils.md)
        * [GitTools](https://github.com/RyanVanDijck/Gask/blob/main/gask/gittools/gittools.md)
        * [Start](https://github.com/RyanVanDijck/Gask/blob/main/gask/start/start.md)
        * [TaskUtils](https://github.com/RyanVanDijck/Gask/blob/main/gask/taskutils/taskutils.md)
        
        ## Concept 
        The idea of this project is to create a terminal task manager 
        in the vein of software such as taskwarrior. 
        
        The difference here is to use a git repository as a backend, 
        to store the tasks and share tasks between users/devices. 
        
        The software will be written in python, installable using pip 
        and should be able to run in the Windows command prompt, the 
        Mac OS terminal and the linux terminal, although the focus
        will be in the linux terminal. 
        
        ## Installation
        
        For now, this software can only be installed using pip. 
        
        You can install the it using the command
        
        `pip install Gask`
        
        ## Basic Usage
        
        When the `gask` command is first given, the program will invite you
        to create a taskspace, where the repository and relevant files are stored. 
        
        You can add a task using:
        
        `gask add <description_of_task>`
        
        You can show the current tasks using:
        
        `gask list`
        
        You can mark a task as complete using:
        
        `gask complete`
        
        For more information about commands, check [here](gask/commands/commands.md).
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: burndown
