-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
22 lines (20 loc) · 844 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='imsearch',
version='0.1.1',
description='A generic framework to build your own reverse image search engine',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/rikenmehta03/imsearch',
author='Riken Mehta',
author_email='[email protected]',
packages=setuptools.find_packages(),
install_requires=['Cython', 'torch', 'torchvision', 'pandas', 'tables', 'redis', 'pymongo', 'nmslib', 'wget', 'opencv-python', 'requests', 'google-cloud-storage', 'boto3'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
)