Metadata-Version: 1.1
Name: antfs
Version: 1.0.0
Summary: Python3 Apache Ant path patterns matching library
Home-page: https://github.com/Softmotions/antfs
Author: Anton Adamansky
Author-email: adamansky@gmail.com
License: MIT
Description: antfs: Python3 `Ant <http://ant.apache.org/manual/dirtasks.html#patterns>`_ path matching library
        ===================================================================
        
        ============
        Usage:
        ============
        
        Select file paths matched the specified `ant path pattern <http://ant.apache.org/manual/dirtasks.html#patterns>`_ :
        
        >>> ds = AntPatternDirectoryScanner("foo/bar", "foo/**/*.txt")
        ... for filename in ds.scan():
        ...    print(filename)
        ...
        
        
        Copy matched files into target directory:
        
        >>> ds = AntPatternDirectoryScanner("some/dir/**")
        ... ds.copy("target/dir")
        
        ==============
        Installation:
        ==============
        
        **************************
        (A): Installation with pip
        **************************
        
        :: 
          
          umask 022
          sudo pip3 install antfs
        
          # Upgrading:
          sudo pip3 install antfs --upgrade
        
        *******************************
        (B): Installation from sources
        *******************************
        
        
        ::
            
            umask 022
            git clone https://github.com/Softmotions/antfs.git
            cd ./antfs
            sudo python3 ./setup.py install
        
Keywords: ant,pattern,matching,glob,regexp,file,selector
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
