-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
44 lines (42 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import find_packages, setup
INSTALL_REQUIRES = [
"torch",
"transformers",
"evaluate",
"datasets",
"tqdm",
"accelerate",
"bitsandbytes",
"ftfy",
"regex",
"omegaconf",
"openai",
"opencv-python",
"nltk",
"scikit-learn",
"open_clip_torch",
"wandb",
"fairscale",
"huggingface_hub",
]
setup(
name="llm-lens",
version="0.0.0.3",
description=(
"llm-lens is a Python package for CV as NLP, "
"where you can run very descriptive image modules "
"on images, and then pass those descriptions to a "
"Large Language Model (LLM) to reason about those "
"images."
),
author="The Contextual AI Tech Team",
author_email="[email protected]",
url="https://github.com/ContextualAI/lens",
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)