-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
41 lines (40 loc) · 1.11 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
from setuptools import find_packages, setup
setup(
name="amago",
version="3.0.0",
author="Jake Grigsby",
author_email="[email protected]",
license="MIT",
packages=find_packages(include=["amago"]),
python_requires=">=3.10",
install_requires=[
"gymnasium>=0.26,<=0.29.1",
"torch>=2.5",
"numpy",
"gin-config",
"wandb",
"einops",
"tqdm",
"gym",
"accelerate>=1.0",
"termcolor",
"huggingface_hub",
],
extras_require={
"envs": [
"metaworld @ git+https://github.com/Farama-Foundation/Metaworld.git@04be337a12305e393c0caf0cbf5ec7755c7c8feb",
# fix common metaworld install bug
"cython<3",
"popgym",
"minigrid",
"stable-retro",
# deepmind alchemy
"dm_env",
"dm_alchemy @ git+https://github.com/deepmind/dm_alchemy.git",
"xminigrid",
"gymnax",
],
"flash": ["ninja", "packaging", "flash-attn"],
"mamba": ["causal-conv1d>=1.1.0", "mamba-ssm"],
},
)