Metadata-Version: 1.0
Name: chronos
Version: 0.1.2
Summary: An ncurses stopwatch/timer.
Home-page: http://git.io/chronos
Author: Nick Sinopoli
Author-email: nsinopoli@gmail.com
License: BSD
Description: chronos
        =======
        
        chronos is an ncurses stopwatch/timer.  It supports multiple simultaneous timers, which makes it ideal for keeping track of time spent on various tasks.
        
        Show me the goods
        -----------------
        
        .. image:: http://nsinopoli.github.com/chronos/chronos.png
        
        Okay, how do I use it?
        ----------------------
        
        Installing
        ~~~~~~~~~~
        
        From the command line::
        
            pip install chronos
        
        Usage
        ~~~~~
        
        To use chronos, run it from the command line::
        
            chronos
        
        You should see a blank screen with a border.
        
        Commands
        ~~~~~~~~
        
        Type ":" to bring up a command window at the bottom of the screen (yes, a la Vim).  The following commands are supported::
        
            n [title]      - Creates and starts a new timer.
            e[n][title]    - Edits the title of the nth timer.
            p[n]           - Pauses/starts the nth timer.
            r[n]           - Resets the nth timer.
            a[n][xh|ym|zs] - Adds time to the nth timer.
            s[n][xh|ym|zs] - Subtracts time from the nth timer.
            q              - Quits the program.
            h              - Shows the help screen.
        
        So, to create a timer titled, 'Test', simply type::
        
            :n Test
        
        Then, to pause it::
        
            :p1
        
        To add 1 hour and 5 minutes to it::
        
            :a1 1h5m
        
        To subtract 45 minutes and 30 seconds from it::
        
            :s1 45m30s
        
        To reset it::
        
            :r1
        
        Version Information
        -------------------
        
        Current stable release is v0.1.2, last updated on 24 February 2012.
        
        Feedback
        --------
        
        Feel free to send any feedback you may have regarding this project to NSinopoli@gmail.com.
        
        
        Changelog
        =========
        
        v0.1.2
        ------
        
        * Implement functionality to add and subtract time (GH-2_)
        
        v0.1.1
        ------
        
        * Change xterm-color to xterm to support curs_set(0) (GH-1_)
        
        v0.1
        ----
        
        * Initial release
        
        .. _GH-1: https://github.com/NSinopoli/chronos/issues/1
        .. _GH-2: https://github.com/NSinopoli/chronos/issues/2
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
