Metadata-Version: 1.1
Name: bugrest
Version: 1.0.0
Summary: Awesome minimalist command line ticket/bug tracker based on ReStructuredText
Home-page: https://github.com/fdev31/bugrest
Author: Fabien Devaux
Author-email: fdev31@gmail.com
License: MIT
Description: BugRest
        #######
        
        Basic bugtracker that uses a plain text file (*ReStructuredText* compatible) as database.
        
        In theory it should run everywhere with Python2 or Python3 available.
        
        See some generated `Bug file <bugs.rst>`_
        
        Screenshot
        ==========
        
        .. image:: shot.png
        
        Usage
        =====
        
        The command line tool is `br` and works in the current directory.
        If you don't like this, feel free to edit `br` file and change the following lines to absolute paths::
        
            BUGFILE = 'bugs.rst'
            DONEFILE = 'fixed_bugs.rst'
        
        
        List bugs::
        
            br
        
        Add new bug::
        
            br new
        
        Delete bug number 4::
        
            br rm 4
        
        Add one comment::
        
            br add 3
        
        Show full description of current bugs::
        
            br show
        
        Show description of some specific bug::
        
            br show 42
        
        Produce an html report::
        
            br html > bugs.html
        
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
