Metadata-Version: 2.4
Name: folder-analyser
Version: 0.1.0
Summary: Folder and project structure analyser — walks directories, dispatches to analyser family members
Author-email: Michael Borck <michael.borck@curtin.edu.au>
License: MIT
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: rich>=13.7.0
Description-Content-Type: text/markdown

# folder-analyser

Folder and project structure analyser — part of the analyser family.

Walks a directory, detects file types, dispatches to the appropriate family analyser (code-analyser for source files, document-analyser for PDFs, etc.), and adds structural signals: file type breakdown, directory depth, naming conventions, framework detection.

**Status:** Coming soon. Name reserved.

## Installation

```bash
pip install folder-analyser
```

## Usage

```bash
folder-analyser path/to/project/     # human-readable summary
folder-analyser path/to/project/ --json
folder-analyser serve                # FastAPI server on port 8006
```

## Analyser family

| Tool | Purpose | Port |
|---|---|---|
| document-analyser | PDF, Word, text | 8000 |
| speech-analyser | Audio, video transcription | 8001 |
| video-analyser | Video quality, scenes, OCR | 8002 |
| records-analyser | CSV, Excel, JSON | 8003 |
| code-analyser | Source code, multi-language | 8004 |
| wordpress-analyser | WP themes and plugins | 8005 |
| folder-analyser | Project structure | 8006 |
| git-analyser | Git history and churn | 8007 |
