Metadata-Version: 2.1
Name: syspend
Version: 0.0.2
Summary: Recursively search the parent directory and execute sys.path.append on the path where the SYSPEND_ROOT file exists.
Home-page: https://github.com/town-paddy/syspend
Author: town_paddy
Author-email: town_paddy@yahoo.com
License: UNKNOWN
Project-URL: website, https://sites.google.com/view/kumake/english
Project-URL: youtube, https://www.youtube.com/channel/UCxm0sZwjGff8KdRcymFKIfA
Project-URL: twitter, https://twitter.com/tweet_paddy
Project-URL: Instagram, https://www.instagram.com/town_paddy/
Platform: UNKNOWN
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

# syspend

syspend recursively searches the parent directory and executes sys.path.append on the path where the SYSPEND_ROOT file exists.

## Usage

In the case, there is a following project.

- project
    - mypackage.py
    - samples
        - sample.py
    - SYSPEND_ROOT  <------- make this file. empty is ok.

sample.py can import mypackage using syspend.
```python sample1.py
import syspend
import mypackage

if __name__ == '__main__':
    mypackage.hello()
```


## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)

