Metadata-Version: 2.1
Name: findpydeps
Version: 0.1.2
Summary: Find the python dependencies used by your python files and projects
Home-page: https://github.com/Nicolas-Reyland/findpydeps
Author: Nicolas Reyland
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Nicolas-Reyland/findpydeps/issues
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

# findpydeps
Find the python dependencies used by your python files and projects.

## Installation
Simply install it via pip:
```
pip install findpydeps
```

## Usage
For the usage, please refer to the `findpydeps -h` output (or `python3 -m findpydeps -h`)

Example usage:
```
findpydeps -i "/home/$USER/python/example-project/" test.py ../test2.py
```

The output can be redirected to a requirements.txt file, like this:
```
findpydeps -i . > requirements.txt
# or maybe a better alternative :
# findpydeps -i main.py -l
# or (the same) :
# findpydeps --input main.py --follow-local-imports
```
and then use the generated file:
```
python3 -m pip install -r requirements.txt
```


