Metadata-Version: 2.1
Name: sine.path
Version: 0.1.3
Summary: class to join file path in a chain manner
Home-page: https://github.com/SineObama/
Author: Xian Zheng
Author-email: 714186139@qq.com
License: MIT
Description: 
        # Brief
        
        convenient to join file path in a chain manner:
        
        ```python
        s = Path('.')
        s = s.join('a', 'b').join('..')
        # s == 'a'
        ```
        
        it uses `os.path.join` and always normalizes the path with `os.path.normpath`  
        while `os.path.join` join the `'a', '..'` to `'a/..'`
        
        
        # Change Log
        
        ## v0.1.3, 2019-2-9
        * change to run with python3
        
        ## v0.1.2, 2018-6-7
        
        * *improve comment and change to English*  
        * *change directory structure and update setup.py*  
        * *add tests.py*  
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
