Metadata-Version: 2.1
Name: repo-ast-builder
Version: 0.0.6
Summary: Creates an AST of a Python project
Keywords: ast,python,builder
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: bumpver; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: pip-tools; extra == "dev"
Requires-Dist: pytest; extra == "dev"

# Repo AST Builder

## Purpose
This application creates an AST of a Python project, which can be used to get _overview_ of the project.

## Usage
```
from repo_ast_builder import read_ast

directory = "../repository"
output = read_ast(directory)
print(output)

```
