https://github.com/OlafenwaMoses/ImageAI
Raw File
Tip revision: 32473a5eb65c958b907519db0965ab846aae8aeb authored by OlafenwaMoses on 20 December 2022, 20:56:58 UTC
action refactor
Tip revision: 32473a5
setup.py
from setuptools import setup,find_packages

setup(name="imageai",
      version='2.1.6',
      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 and John Olafenwa',
      author_email='guymodscientist@gmail.com',
      license='MIT',
      packages= find_packages(),
      install_requires=['numpy==1.19.3','scipy==1.4.1','pillow==8.1.1',"matplotlib==3.3.2", "h5py==2.10.0", "keras-resnet==0.2.0", "opencv-python", "keras==2.4.3"],
      zip_safe=False

      )
back to top