Metadata-Version: 1.1
Name: jaraco.path
Version: 1.1.1
Summary: miscellaneous path functions
Home-page: https://bitbucket.org/jaraco/jaraco.path
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Description: jaraco.path
        ===========
        
        Hidden File Detection
        ---------------------
        
        ``jaraco.path`` provides cross platform hidden file detection::
        
            from jaraco import path
            if path.is_hidden('/'):
                print("Your root is hidden")
        
            hidden_dirs = filter(is_hidden, os.listdir('.'))
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
