From c95b2bd8d3c1ee0b6252aad12a9479f9cfd809e6 Mon Sep 17 00:00:00 2001 From: Benjamin Kirkbride Date: Thu, 20 Aug 2020 18:32:25 -0400 Subject: [PATCH] docs(pytiled_parser): update description --- README.md | 2 +- pytiled_parser/__init__.py | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) 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__