diff --git a/README.md b/README.md index 74e3a0a..9f459c2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # PyTiled Parser PyTiled Parser is a Python Library for parsing JSON formatted -[Tiled Map Editor](https://www.mapeditor.org/) maps and tilesets to be used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) or side-scrolling games. +[Tiled Map Editor](https://www.mapeditor.org/) maps and tilesets to be used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) or side-scrolling games in a strictly typed fashion. PyTiled Parser is not tied to any particular graphics library, and can be used with [Arcade](http://arcade.academy), diff --git a/pytiled_parser/__init__.py b/pytiled_parser/__init__.py index 3ce0b53..3620319 100644 --- a/pytiled_parser/__init__.py +++ b/pytiled_parser/__init__.py @@ -1,4 +1,13 @@ -"""Parse Tiled Maps and Tilesets""" +"""Parse Tiled Maps and Tilesets + +See: https://www.mapeditor.org/ + +This library is for parsing JSON formatted Tiled Map Editormaps and tilesets to be + used as maps and levels for 2D top-down (orthogonal, hexogonal, or isometric) + or side-scrolling games in a strictly typed fashion. + +PyTiled Parser is not tied to any particular graphics library or game engine. +""" # pylint: disable=too-few-public-methods @@ -7,3 +16,4 @@ from .layer import Layer from .properties import Properties from .tiled_map import Map from .tileset import Tileset +from .version import __version__