Metadata-Version: 1.1
Name: todotxt
Version: 0.0.2
Summary: A Python library for dealing with todo.txt files
Home-page: https://github.com/mrshu/py-todotxt
Author: mrshu
Author-email: mr@shu.io
License: UNKNOWN
Description: py-todotxt
        ==========
        
        A Python library for dealing with todo.txt files
        
        Usage
        -----
        
        `todotxt` can be used in varions ways. Here is one of them
        
        .. code:: python
        
            from todotxt import Tasks
            tasks = Tasks('./todo.txt')
            print(tasks.filter_by('@today').order_by('priority'))
        
        
        Tests
        -----
        
        Located in `./tests`, can be run with
        
        .. code:: bash
        
            ./tests$ nosetests .
        
        
Keywords: todotxt
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
