Metadata-Version: 2.4
Name: pptx-edit
Version: 0.1.1
Summary: A Python library for editing PowerPoint (.pptx) files
Author: Luesewr
License-Expression: MIT
Project-URL: Homepage, https://github.com/Luesewr/pptx-editor
Project-URL: Repository, https://github.com/Luesewr/pptx-editor
Project-URL: Issues, https://github.com/Luesewr/pptx-editor/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: lxml>=6.0.2
Requires-Dist: typing_extensions>=4.10; python_version < "3.13"
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov>=5.0; extra == "dev"
Requires-Dist: ruff>=0.4.0; extra == "dev"
Requires-Dist: mypy>=1.10; extra == "dev"
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: lxml-stubs>=0.5.1; extra == "dev"
Dynamic: license-file

# pptx-editor

A Python library for editing PowerPoint (.pptx) files.

## Installation

```bash
pip install pptx-edit
```

For development:

```bash
pip install -e ".[dev]"
```

## Usage

```python
import pptx_editor
```

## Development

Run tests:

```bash
pytest
```

Run linter:

```bash
ruff check src/ tests/
```

Run type checker:

```bash
mypy src/
```

## License

MIT
