Metadata-Version: 2.1
Name: difai
Version: 0.1.0
Summary: 'Did I forget any imports' generates requirement files for you
License: WTFPL
Keywords: packaging
Author: Marvin van Aalst
Author-email: marvin.vanaalst@gmail.com
Maintainer: Marvin van Aalst
Maintainer-email: marvin.vanaalst@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: nbformat (>=5.6.0,<6.0.0)
Requires-Dist: pip-tools (>=6.8.0,<7.0.0)
Requires-Dist: typer (>=0.6.1,<0.7.0)
Description-Content-Type: text/markdown

# Did I forget any imports?

DIFAI searches for import statements for all the python and jupyter notebook files in the current directory. It then uses `pip freeze` to get your installed versions and `pip-compile` to generate a `requirements.txt` file containing all of your dependencies and their depdendencies including hashes for a reproducible build. 

## Pipeline

```mermaid
graph TB
    A[glob] --> B
    A --> C
    B[.py] --> D
    C[.ipynb] -->|nbconvert| B
    D[AST]  --> E
    X[pip freeze] --> E
    E[requirements.in] -->|pip tools| F
    F[requirements.txt]
```



