Metadata-Version: 2.4
Name: viso-sdk-python
Version: 1.1.2
Summary: VisoSDK: A Python SDK for use in Viso containers
Home-page: https://gitlab.com/TopKamera/03_edge/Base/viso-sdk-python-public.git
Author: support@viso.ai
Author-email: support@viso.ai
License: LGPLv3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: COPYING
License-File: AUTHORS
Requires-Dist: requests
Requires-Dist: requests-toolbelt
Requires-Dist: setuptools
Requires-Dist: paho-mqtt
Requires-Dist: redis
Requires-Dist: opencv-contrib-python~=4.10.0
Requires-Dist: Pillow
Requires-Dist: cython~=3.0.2
Requires-Dist: numpy~=1.26.2
Requires-Dist: six~=1.16.0
Requires-Dist: traceback2~=1.4.0
Requires-Dist: shapely~=2.0.7
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# viso-sdk-python

**viso-sdk-python** is a utility for [viso.ai](https://viso.ai) containers.

## Installation

Use `pip` to install the latest stable version of **viso-sdk-python**:

```shell
pip install viso-sdk-python
```


## Build
```shell
python3 -m pip install -e .
python3 setup.py sdist bdist_wheel

# pip3 install setuptools-cythonize
# pip3 install setuptools
# pip3 install --upgrade pip
```

```shell
- remove build files before pushing
cd viso_sdk
find . -type f -name "*.c" -delete
find . -type f -name "*.so" -delete
```


## Build sphinx document
```shell
# setup dependencies for sphinx autodoc extensions
pip3 install -r requirements-docs.txt

# 
mkdir docs
cd docs

# run script for generating autodoc 
sphinx-apidoc -e -P -f -o source/ ../viso_sdk
make html

# execute html page
cd docs/_build/index.html
```
