https://github.com/OlafenwaMoses/ImageAI
Raw File
Tip revision: c24d13237f63c06be77a79e96bf774a3ce61cc74 authored by OlafenwaMoses on 30 December 2022, 12:53:11 UTC
fix custom object filter on COCO video detection
Tip revision: c24d132
setup.py
from setuptools import setup,find_packages

setup(name="imageai",
      version='3.0.3',
      description='A python library built to empower developers to build applications and systems  with self-contained Computer Vision capabilities',
      url="https://github.com/OlafenwaMoses/ImageAI",
      author='Moses Olafenwa',
      author_email='guymodscientist@gmail.com',
      license='MIT',
      packages= find_packages(exclude=["*imageai_tf_deprecated*"]),
      install_requires=[],
      include_package_data=True,
      zip_safe=False)
back to top