-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 753 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 753 Bytes
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
from setuptools import setup, find_packages
setup(
name="TransferAttack",
version="0.0.dev",
description="Transferable attack",
author="Junxiao Yang, Zhexin Zhang, et al.",
author_email="yangjunx21@gmail.com",
url="https://github.com/thu-coai/TransferAttack",
packages=find_packages(include=('llm_attacks*',)),
include_package_data=True,
install_requires=[
'transformers>=4.34.0',
'torch>=2.0',
'openai>=1.0.0',
'numpy',
'fschat',
'tokenizers >= 0.13.3',
],
python_requires=">=3.7",
keywords=['ai safety',
],
license='MIT',
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3"
]
)