Metadata-Version: 2.1
Name: dep-graph-hassan
Version: 0.1.0
Summary: Dependency Graph Resolution Package
Author: Muhammad Hassan Ahmed
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# dep_graph

Simple python package to generate dependency graph from given json file.

## Run module

    python -m dep_graph

  By default it reads from `/tmp/deps.json`

## Run module with given path to package dependencie  

    python -m dep_graph  --path ./some_fir/deps.json

## Create dummy dependency json dummy file

    python dep_graph/helper/create_dummy_file.py --path ./tests test_file.json

 By default it outputs to `/tmp/deps.json`
  
## Run Tests

    python -m unittest discover tests/

## Create package build wiih setup.py

    python setup.py sdist bdist_wheel

## Create Virtual Environment with poetry

    poetry install

## Create Build for package

    poetry build

## install pre-commit hooks

    pre-commit install

