-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (40 loc) · 1.11 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
from pathlib import Path
from setuptools import find_packages, setup
long_description = (Path(__file__).parent / "README.md").read_text()
DESCRIPTION = "Adversarial Attacks on Multimodal Agents"
setup(
name="agent_attack",
version="0.0.1",
author="Chen Henry Wu",
author_email="<[email protected]>",
url="https://github.com/ChenWu98/agent-attack",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*"]),
install_requires=[
"transformers==4.38.2",
"torchvision",
"datasets",
"ftfy",
"tensorboard",
"Jinja2",
"omegaconf",
"wandb",
"pre-commit",
"opencv-python",
"llava @ git+https://github.com/ChenWu98/LLaVA",
"openai",
"pycocotools",
"rich",
"scikit-image",
"google-generativeai",
"fschat[model_worker,webui]",
"langchain",
"seaborn",
"beartype",
"anthropic",
],
python_requires=">=3.10",
license="MIT license",
)