Metadata-Version: 2.4
Name: robo-manim-add-ons
Version: 0.1.0
Summary: A collection of add-ons and utilities for Manim Community Edition
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/robo-manim-add-ons
Project-URL: Repository, https://github.com/yourusername/robo-manim-add-ons
Project-URL: Issues, https://github.com/yourusername/robo-manim-add-ons/issues
Keywords: manim,animation,math,visualization
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
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: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: manim>=0.18.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# Robo Manim Add-ons

A collection of add-ons and utilities for [Manim Community Edition](https://www.manim.community/).

## Installation

### For Users

Install from PyPI (once published):

```bash
pip install robo-manim-add-ons
```

### For Development

1. Clone the repository:
```bash
git clone https://github.com/yourusername/robo-manim-add-ons.git
cd robo-manim-add-ons
```

2. Create and activate a virtual environment:
```bash
# Create venv
python -m venv venv

# Activate on macOS/Linux
source venv/bin/activate

# Activate on Windows
# venv\Scripts\activate
```

3. Install manim and development dependencies:
```bash
pip install -e .
pip install -e ".[dev]"
```

Or install from requirements files:
```bash
pip install -r requirements.txt
pip install -r requirements-dev.txt
```

## Quick Start

```python
from manim import *
from robo_manim_add_ons import CustomMobject

class MyScene(Scene):
    def construct(self):
        # Use your custom add-ons here
        obj = CustomMobject()
        self.play(Create(obj))
        self.wait()
```

## Running Examples

```bash
# Make sure your venv is activated
source venv/bin/activate

# Run the demo
python examples/demo.py
```

## Running Tests

```bash
# Make sure your venv is activated
source venv/bin/activate

# Run all tests
pytest

# Run with coverage
pytest --cov=robo_manim_add_ons
```

## Project Structure

```
robo-manim-add-ons/
├── pyproject.toml              # Package configuration
├── setup.py                    # Setup file
├── README.md                   # This file
├── LICENSE                     # MIT License
├── requirements.txt            # Production dependencies
├── requirements-dev.txt        # Development dependencies
├── robo_manim_add_ons/        # Main package
│   ├── __init__.py
│   └── ...
├── tests/                      # Test suite
│   └── test_*.py
└── examples/                   # Usage examples
    └── demo.py
```

## Development Workflow

1. Create and activate venv (see above)
2. Install in editable mode: `pip install -e ".[dev]"`
3. Make your changes
4. Run tests: `pytest`
5. Run examples to verify: `python examples/demo.py`

## Building and Publishing

### Build the package:
```bash
pip install build twine
python -m build
```

### Publish to PyPI:
```bash
twine upload dist/*
```

### Publish to TestPyPI (for testing):
```bash
twine upload --repository testpypi dist/*
```

## License

MIT License - see LICENSE file for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.
