├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── assets ├── img_example1.jpg └── img_example2.jpg ├── pidgey ├── __init__.py ├── __version__.py └── annotate.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/README.rst -------------------------------------------------------------------------------- /assets/img_example1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/assets/img_example1.jpg -------------------------------------------------------------------------------- /assets/img_example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/assets/img_example2.jpg -------------------------------------------------------------------------------- /pidgey/__init__.py: -------------------------------------------------------------------------------- 1 | from .annotate import * 2 | -------------------------------------------------------------------------------- /pidgey/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/pidgey/__version__.py -------------------------------------------------------------------------------- /pidgey/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/pidgey/annotate.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbwvos/pidgey/HEAD/setup.py --------------------------------------------------------------------------------