-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (55 loc) · 1.31 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
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
setup(
name="aisafetylab",
version="0.0.dev",
description="AI safety toolkits and resources",
author="Zhexin Zhang, Leqi Lei, et al.",
author_email="[email protected], [email protected]",
url="https://github.com/thu-coai/AISafetyLab",
packages=find_packages(include=('aisafetylab*',)),
include_package_data=True,
install_requires=[
'transformers>=4.34.0',
'sentencepiece',
'datasets',
'torch>=2.0',
'openai>=1.0.0',
'numpy',
'pandas',
'fschat',
'nltk',
'loguru',
'jsonlines',
'spacy',
'tokenizers >= 0.13.3',
'tensorboard',
'wandb',
'deepspeed',
'accelerate',
'optree',
'scipy',
'nvitop',
'rich',
'typing-extensions',
'omegaconf',
'anthropic',
'tiktoken',
'torchrl',
'peft',
'pytorch_lightning',
'PyYAML',
'Requests',
'safetensors',
'setproctitle',
'torchrl',
'hydra-core'
],
python_requires=">=3.7",
keywords=['ai safety',
],
license='MIT',
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3"
]
)