forked from PrithivirajDamodaran/ZSIC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 714 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
import os
os.system("pip install git+https://github.com/openai/CLIP.git")
os.system("pip install sentence-transformers")
setuptools.setup(
name="ZSIC",
version="1.0",
author="PithiviDa @ Donkey Stereotype",
author_email="",
description="Zeroshot Image Classification",
long_description="Zero Shot Image Classification equivalent for HuggingFace Zero Shot Text Classification - By Prithivi Da",
url="https://github.com/PrithivirajDamodaran/ZSIC.git",
packages=setuptools.find_packages(),
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: MIT",
"Operating System :: OS Independent",
],
)