Metadata-Version: 2.1
Name: markerpath
Version: 0.1.12
Summary: All imports are relative to the presence of the marker file
Home-page: https://github.com/
Author: gg61021277
Author-email: gg61021277@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

Usage:

1. Create a file with extension .marker in your base directory.  
2. Contents of this file
    an empty file
    OR
    lines of path relative to the base directory marked by the marker file. These paths will be appended to sys.path
    OR
    add_all_python_paths

3. In your python file with main anywhere under the base directory.
    import markerpath

    3.1 This will create a environment variable 
        MARKERPATH=<the base directory>

    3.2 Access this as such
        import os
        marker_home=os.environ["MARKERPATH"]


