-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (27 loc) · 914 Bytes
/
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
from setuptools import find_packages
from distutils.core import setup
setup(
name='eurekaverse',
author='William Liang',
version='1.0',
description='Accompanying code for Environment Curriculum Generation via Large Language Models',
python_requires='>=3.8',
install_requires=[
'torch@https://download.pytorch.org/whl/cu113/torch-1.10.0%2Bcu113-cp38-cp38-linux_x86_64.whl',
'torchvision@https://download.pytorch.org/whl/cu113/torchvision-0.11.1%2Bcu113-cp38-cp38-linux_x86_64.whl',
'torchaudio@https://download.pytorch.org/whl/cu113/torchaudio-0.10.0%2Bcu113-cp38-cp38-linux_x86_64.whl',
'numpy<1.24',
'scipy>=0.13.0',
'matplotlib',
'openai',
'opencv-python',
'pydelatin',
'pyfqmr',
'hydra-core',
'wandb',
'gpustat',
'tqdm',
'ipdb',
],
packages=find_packages()
)