Metadata-Version: 1.0
Name: timed
Version: 0.12
Summary: command-line time tracking
Home-page: http://soundofemptiness.com/projects/timed
Author: Adeel Ahmad Khan
Author-email: adeel2@umbc.edu
License: UNKNOWN
Description: timed is a command-line time tracker.
        
        timed: alias for 'timed status'
        
        timed status: print current status
        
        timed start <project>: start tracking for <project>
        
        timed stop: stop tracking for the current project
        
        timed summary: print a summary of hours for all projects
        
        timed help: print help
        
        A human-readable log is stored in ~/.timed, and can be edited.
        
        Installation: easy_install timed, or:
        
        $ git clone git://github.com/adeel/timed.git
        $ cd timed
        $ python setup.py install
        
        Tip: put the name of the active timed project in your bash prompt:
        
        function get_timed_project {
        timed status --quiet
        }
        
        PS1='\u@\h \$(get_timed_project) [\w] \n % '
        
        Release notes:
        
        0.12: YAML turned out to be pretty slow, so it's been dropped.
        0.11: Using YAML to store the log.
        0.10: First release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Topic :: Utilities
