Metadata-Version: 1.1
Name: pathquery
Version: 0.1.1
Summary: PathQuery is a tool to declaratively define file searches.
Home-page: https://github.com/crdoconnor/pathquery
Author: Colm O'Connor
Author-email: colm.oconnor.github@gmail.com
License: MIT
Description: PathQuery
        =========
        
        PathQuery is a tool to declaratively define file searches.
        
        Example
        -------
        
        Search for all files except the node_modules folder:
        
        .. code-block:: python
        
            from pathquery import pathq
        
            pathq("yourdir/*.js").but_not(pathq("yourdir/node_modules/*"))
        
        Install
        -------
        
          $ pip install pathquery
        
        Hacking
        -------
        
        If you want to hack, you can TDD with::
        
          sudo pip install hitch
          cd dumbyaml/tests
          hitch init
          hitch test *.test
        
Keywords: path file search
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Natural Language :: English
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.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
