Metadata-Version: 2.1
Name: syspath-fixer
Version: 1.0.1
Summary: add modules to syspath easily
Home-page: https://github.com/TeodorIvanov/syspath-fixer
Author: Teodor Ivanov
Author-email: tdrivanov@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# syspath-fixer #

- Are you tired of getting ImportErrors when building multi-module applications in Python?  
- Are you tired of endlessly appending modules to `sys.path`?  

Here comes syspath_fixer!
Simply:
```bash
pip install syspath-fixer
```
```python
__import__('syspath_fixer').fix(__file__)
```
And all your pain will be gone!

Syspath-fixer recursively adds python modules to the `sys.path`, so you don't have to.


