Metadata-Version: 2.4
Name: zerodoc-gen
Version: 1.2.0
Summary: Zero-config documentation generator with beautiful UI
Author-email: AutoDoc Team <autodoc@example.com>
License: MIT
Project-URL: Homepage, https://github.com/autodoc-team/autodoc-typer
Project-URL: Documentation, https://autodoc-typer.readthedocs.io
Project-URL: Repository, https://github.com/autodoc-team/autodoc-typer
Project-URL: Issues, https://github.com/autodoc-team/autodoc-typer/issues
Keywords: documentation,generator,python,typer,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer[all]>=0.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: jinja2>=3.1.0
Requires-Dist: markdown-it-py>=3.0.0
Requires-Dist: tomli>=2.0.0; python_version < "3.11"
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Dynamic: license-file

# ZeroDoc - Zero-Config Documentation Generator

**Generate beautiful documentation from your codebase with zero configuration.**

ZeroDoc scans your project, extracts API information, and creates a clean, searchable documentation website - all with a single command.

## 🚀 Features

- **Multi-Language Support**: Python, JavaScript, TypeScript, Go, Rust, Java, C/C++, and more
- **Zero Configuration**: Works out of the box with any project
- **AST-based Parsing**: Accurately extracts API information using language-specific parsers
- **Markdown Generation**: Creates clean, readable markdown documentation
- **Static Site Export**: Converts docs to a beautiful HTML site
- **Jinja2 Templates**: Customizable README and documentation templates
- **CLI Interface**: Simple commands powered by Typer
- **Fast & Lightweight**: Generates docs in seconds, not minutes

## 📦 Installation

```bash
# Install from PyPI
pip install zerodoc-gen

# Or use pipx for isolated installation
pipx install zerodoc-gen

# Install from source
git clone https://github.com/yourusername/zerodoc.git
cd zerodoc
pip install -e .
```

## 🎯 Quick Start

```bash
# Generate documentation for your project
autodoc scan .               # Scan codebase and create API JSON
autodoc readme               # Generate/update README.md
autodoc docs .               # Generate markdown documentation
autodoc export --serve       # Export as static site and serve locally
```

## 📚 Commands

### `autodoc scan`
Scans your Python codebase and extracts API information into a JSON file.

```bash
autodoc scan [PATH] --out build/api.json --verbose
```

### `autodoc readme`
Generates or updates README.md using a Jinja2 template.

```bash
autodoc readme [PROJECT_PATH] --template default --force
```

### `autodoc docs`
Generates markdown documentation for all modules.

```bash
autodoc docs [PATH] --output docs --verbose
```

### `autodoc export`
Exports markdown docs as a static HTML site.

```bash
autodoc export --source docs --dest site --theme simple --serve
```

## 💡 Why ZeroDoc?

- **Cost-Effective**: Free and open-source vs $65-79/month for GitBook
- **Developer-First**: Built by developers, for developers
- **No Lock-in**: Your docs stay in your repo as markdown
- **CI/CD Ready**: Integrate with GitHub Actions for automatic doc updates
- **Fast**: Generates docs for large codebases in seconds

## 🛠️ Development

```bash
# Clone the repository
git clone https://github.com/yourusername/zerodoc.git
cd zerodoc

# Install in development mode
pip install -e ".[dev]"

# Run on itself to test
autodoc scan .
autodoc docs .
autodoc export --serve
```

## 🌍 Supported Languages

ZeroDoc supports documentation generation for:

- **Python**: Full AST-based parsing with docstrings, type hints, decorators
- **JavaScript/TypeScript**: Classes, functions, async/await, ES6+ features  
- **Go**: Packages, structs, interfaces, methods, goroutines
- **Rust**: Structs, enums, traits, impl blocks, lifetimes
- **Java**: Classes, interfaces, generics, annotations
- **C/C++**: Classes, structs, functions, templates
- **Ruby, PHP, Swift, Kotlin**: Basic support via tree-sitter
- **And more**: 40+ languages supported through tree-sitter

## 🤝 Contributing

We welcome contributions! Here are some good first issues:

1. **Improve language parsers**: Enhance extraction for specific languages
2. **Improve themes**: Add more CSS themes or Tailwind support
3. **Git integration**: Auto-commit docs on successful generation
4. **AI enrichment**: Use LLMs to enhance documentation

## 📊 Statistics

- Lines of Code: < 1000
- Dependencies: Minimal (typer, jinja2, markdown-it-py)
- Performance: Processes 1000+ files in < 5 seconds
- Memory: < 50MB for large codebases

## 🗺️ Roadmap

- [ ] Multi-language support (JavaScript, TypeScript, Go, Rust)
- [ ] Plugin system for custom processors
- [ ] Docusaurus/MkDocs export formats
- [ ] API change detection and PR comments
- [ ] Local AI integration for doc enhancement
- [ ] Search functionality in exported sites

## 📄 License

MIT License - see [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Built with [Typer](https://typer.tiangolo.com/) - The amazing CLI framework
- Inspired by the need for affordable, quality documentation tools
- Thanks to all contributors and early adopters

---


*Stop paying for expensive doc platforms. Start using ZeroDoc.*
