Metadata-Version: 2.1
Name: include-pycharm-modules
Version: 0.0.3
Summary: Adds any pycharm source folder to the python module search path so you can import them as if they were installed
Home-page: https://github.com/KIC/include-pycharm-modules
Author: KIC
Author-email: 
Requires-Python: >= 3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Dist: beautifulsoup4

## Include Pycharm Source Folders as Modules
This is a very simple tool which just adds all source folders from a pycharm project to the
 search path. This is very useful when working with jupyter notebooks and local modules. 

If you have a pycharm project like
```
super-project
  fancy_calculations
    fancy_module
      __init__.py
  notebooks
    a notebook.ipynb
```
 
A notebooks first cell may look like:
```python
%matplotlib inline
%load_ext autoreload
%autoreload 2
from include_pycharm_modules import import_source_folders

# simply provide the root folder where your .idea folder is living
import_source_folders("..")  

import fancy_module 
```


