-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (42 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name='genaibench',
version='0.0.1',
description='Official Codes for GenAI-Bench, as part of GenAI-Arena',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Dongfu Jiang',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/TIGER-AI-Lab/GenAI-Bench',
install_requires=[
"transformers==4.41.0",
"sentencepiece",
"torch",
"Pillow",
"torch",
"accelerate",
"torchvision",
"datasets",
"tqdm",
"numpy",
"prettytable",
"fire",
"datasets",
"openai",
"tiktoken",
"av",
"decord",
"mantis-vl",
"protobuf",
"opencv-python",
"peft",
"einops",
"matplotlib",
"xformers",
"google-generativeai",
],
extras_require={}
)
# change it to pyproject.toml
# [build-system]