Metadata-Version: 2.1
Name: python-object-detector
Version: 0.1.1
Summary: Python object detector for aerial detection.
Home-page: https://github.com/cristianion94/python-object-detector
License: MIT
Keywords: cv,detection,image
Author: Cristian Ion
Author-email: cristian.ion94@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: filetype (>=1.0.13,<2.0.0)
Requires-Dist: numpy (>=1.22.4,<2.0.0)
Requires-Dist: opencv-python (>=4.6.0,<5.0.0)
Project-URL: Repository, https://github.com/cristianion94/python-object-detector
Description-Content-Type: text/markdown

# python-object-detector
Generic object detector interface for Python

https://semver.org/spec/v2.0.0.html
Given a version number MAJOR.MINOR.PATCH, increment the:

MAJOR version when you make incompatible API changes,
MINOR version when you add functionality in a backwards compatible manner, and
PATCH version when you make backwards compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

# Introduction
# Installation

```shell
pip install python-object-detector
```

# Usage
# History

# Development
```shell
black ./src/ ./tests/ .
```
```shell
mypy .
```
```shell
pflake8 .
```
