Metadata-Version: 2.1
Name: cvtkit
Version: 0.0.6
Summary: A Python library including general functions and operations on various computer vision related structures.
Author-email: Nathaniel Burgdorfer <nburgdorfer@gmail.com>
Maintainer-email: Nathaniel Burgdorfer <nburgdorfer@gmail.com>
Project-URL: Homepage, https://github.com/nburgdorfer/vision_toolkit
Project-URL: Repository, https://github.com/nburgdorfer/cvtkit
Keywords: computer vision,3d reconstruction,geometry,machine learning
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Image Processing
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: scipy
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"

# Computer Vision Toolkit (CVT)
A collection of some useful computer vision tools.

Please check out the [documentation](https://nburgdorfer.github.io/cvtkit/) for tutorials, explaination of various topics, and references to the library API.


## Contributing
building package for distribution:
```bash
python -m build --sdist
```

publishing to Pypi:
```bash
twine upload dist/*
```
