Metadata-Version: 2.1
Name: annotation-tool
Version: 0.3.1
Summary: 
License: MIT
Author: Fernando Moya Rueda
Author-email: fernando.moya@cs.tu-dortmund.de
Requires-Python: >=3.8,<4
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: PyOpenGL
Requires-Dist: PyQt5 (>=5.14.2,<5.15.0); sys_platform != "win32"
Requires-Dist: PyQt5 (>=5.15,<6.0); sys_platform == "win32"
Requires-Dist: distinctipy
Requires-Dist: filetype
Requires-Dist: matplotlib (==3.5.0)
Requires-Dist: numpy
Requires-Dist: opencv-python (>=4.5.3.56,<4.6.0.0)
Requires-Dist: pyqtgraph (==0.11.0)
Requires-Dist: scipy
Requires-Dist: torch
Description-Content-Type: text/markdown

<div align="center">

![](https://img.shields.io/badge/license-MIT-green)

</div>

# Installation

All stable versions can be installed from [PyPI](https://pypi.org/) by using [pip](https://pypi.org/project/pip/) or your favorite package manager

    pip install annotation-tool

You can get pre-published versions from the [TestPyPI](https://test.pypi.org/project/annotation-tool/) repository by running

    pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ annotation-tool

After installation the annotation tool can be run as simple as

    annotation-tool

# Development

For installing the requirements you can use [poetry](https://python-poetry.org/). After you installed poetry just run

    poetry install

Building the executable requires [docker](https://www.docker.com/). After you installed docker on your system you can run one of

    make build-linux
    make build-windows

to build the executables for linux or windows.

