Metadata-Version: 2.3
Name: dais-scantree
Version: 0.2.1
Summary: An LLM agent friendly file scanner
Author: BHznJNs
Author-email: BHznJNs <bhznjns@outlook.com>
Requires-Dist: pathspec==1.0.4
Requires-Python: >=3.14
Description-Content-Type: text/markdown

# Dais ScanTree

An LLM agent friendly file tree scanner.

## Usage

```python
from dais_scantree import bfs as scantree_bfs

for entry in scantree_bfs("./", scan_limit=100, include_hidden=True, include_gitignored=True):
    print(entry.path)
```
