Metadata-Version: 2.4
Name: dirbuilder
Version: 0.1.1
Summary: A simple CLI tool to print and save your project directory structure
License: MIT
Keywords: cli,directory,tree,structure,project
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# DirBuilder

A simple CLI tool to print and save your project directory structure — useful for documentation, README files, and sharing project layouts.

---

## Install

```bash
pip install dirbuilder
```

---

## Usage

Navigate to your project root and run:

```bash
dirbuilder
```

To skip specific folders or files, pass them as arguments:

```bash
dirbuilder node_modules build dist .env venv
```

### Example Output

```
my-app
├── public
│   └── index.html
├── src
│   ├── main.jsx
│   └── pages
│       ├── about.jsx
│       └── home.jsx
├── package.json
└── structure.txt
```

The tree is printed to the terminal and also saved as `structure.txt` in the current directory.

---

## Skipped by Default

These are always skipped without needing to pass them:

- `.git`
- `__pycache__`
- `.DS_Store`
- `.idea`
- `.vscode`

---

## License

MIT
