-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
37 lines (36 loc) · 1.09 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
import setuptools
setuptools.setup(
name='llfbench',
version='0.1.0',
author='LLF-Bench Team',
author_email='[email protected]',
packages=setuptools.find_packages(include=["llfbench*"], exclude=["tests*"]),
url='https://github.com/microsoft/LLF-Bench',
license='MIT LICENSE',
description='A Gym environment for Learning from Language Feedback (LLF).',
long_description=open('README.md').read(),
install_requires=[
"numpy<1.24.0",
"tqdm",
"gymnasium==0.29.1",
"parse==1.19.1",
"openai==0.28",
"pyautogen==0.1",
# "Cython==0.29.36",
"gym-bandits@git+https://github.com/JKCooper2/gym-bandits#egg=gym-bandits",
# poem
"cmudict==1.0.13",
"syllables==1.0.9",
# optimization
"jax",
"jaxlib",
# highway
"highway-env",
# reco
'requests==2.32.0'
],
extras_require={
'metaworld': ['metaworld@git+https://github.com/Farama-Foundation/Metaworld.git@c822f28#egg=metaworld'],
'alfworld': [ 'alfworld>=0.3.0' ]
}
)