swh:1:snp:e698c35ff7916adf833c6eebc5c145f6f51a222b
Raw File
Tip revision: 64e6da4c045b7a2ac97d05dd8d1ab42bbbc58be8 authored by MOSES OLAFENWA on 03 March 2023, 22:50:09 UTC
Merge pull request #797 from Yodeman/master
Tip revision: 64e6da4
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