Metadata-Version: 1.1
Name: adaptpath
Version: 0.3.6
Summary: convinent script to adapt python's sys.path
Home-page: https://github.com/darkdarkfruit/adaptpath
Author: darkdarkfruit
Author-email: darkdarkfruit@{nospam}gmail.com
License: MIT
Description: # Description
        convinent script to adapt python's sys.path
        
        # Install
            pip install adaptpath
        
        # Usage
            * Say we have dir-tree below:
                a / b / c.py
                x / y / z.py
            
            * Now suppose we are in "z.py" and we want to do this:
                from a.b import c
            
            * We can put the lines below ahead of "z.py"
                from adaptpath import adaptpath
                adaptpath.adapt_from_path(2, __file__)
            
        
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
