Metadata-Version: 2.4
Name: tilemap-editor
Version: 1.0.2
Summary: Pygame tilemap editor with layers and sprite animation tools
Author: tilemap editor contributors
License: Proprietary
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygame-ce>=2.5
Dynamic: license-file

# tilemap-editor

`tilemap-editor` is a pygame-based map editor focused on fast iteration for 2D games.

## What it includes

- multi-layer tile/object map editing
- tileset and per-tile properties
- sprite animation editor (`tilemap-anim-editor`)
- JSON save/load compatible with this editor

## Install (local/dev)

```bash
pip install -e .
```

## Run editor

```bash
tilemap-editor
```

## In-game debug usage

```python
from editor import Editor

if __name__ == "__main__":
    dbg = Editor()
    dbg.run()
```

## Runtime split

This package is editor-first. Runtime parser/loading modules can be moved into a separate package later.
