Metadata-Version: 2.1
Name: ezpath
Version: 1.1
Summary: Turn-Key solution to manage paths relative to the current file
Author: Vittorio Pascucci
Requires-Python: >=3.6
Description-Content-Type: text/markdown

The ezpath module allows managing paths relative to the file calling the module's functions, as opposed to being relative to the current working directory. This can be helpful to manage dependencies in a large local codebase.

Example:

```python
from ezpath import *

# adding ../src (relative to the current file) to PYTHONPATH
add_rel_path('../src')

# getting the absolute path of a file/folder relative to the current file
get_abs_path('../src/my_file.py')
```
