|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "amago" |
| 7 | +version = "3.2.0" |
| 8 | +description = "off-policy RL on long sequences" |
| 9 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 10 | +authors = [ |
| 11 | + { name = "Jake Grigsby", email = "grigsby@cs.utexas.edu" } |
| 12 | +] |
| 13 | +license = "MIT" |
| 14 | +license-files = ["LICENSE"] |
| 15 | +requires-python = ">=3.10" |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 4 - Beta", |
| 18 | + "Intended Audience :: Science/Research", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 21 | +] |
| 22 | +keywords = ["reinforcement-learning", "memory", "transformers", "machine-learning"] |
| 23 | +dependencies = [ |
| 24 | + "gymnasium>=0.26,<=0.29.1", |
| 25 | + "torch>=2.5,<3", |
| 26 | + "numpy>=1.21,<3", |
| 27 | + "gin-config", |
| 28 | + "wandb", |
| 29 | + "einops", |
| 30 | + "tqdm", |
| 31 | + "gym", |
| 32 | + "accelerate>=1.0", |
| 33 | + "termcolor", |
| 34 | +] |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +envs = [ |
| 38 | + "metaworld @ git+https://github.com/Farama-Foundation/Metaworld.git@04be337a12305e393c0caf0cbf5ec7755c7c8feb", |
| 39 | + "cython<3", |
| 40 | + "popgym", |
| 41 | + "minigrid", |
| 42 | + "stable-retro", |
| 43 | + "dm_env", |
| 44 | + "dm_alchemy @ git+https://github.com/deepmind/dm_alchemy.git", |
| 45 | + "gymnax", |
| 46 | + "matplotlib", |
| 47 | + "opencv-python", |
| 48 | + "procgen", |
| 49 | + "ale_py>=0.10", |
| 50 | +] |
| 51 | +flash = ["ninja", "packaging", "flash-attn"] |
| 52 | +mamba = ["causal-conv1d>=1.1.0", "mamba-ssm"] |
| 53 | + |
| 54 | +[project.urls] |
| 55 | +Repository = "https://github.com/UT-Austin-RPL/amago" |
| 56 | + |
| 57 | +[tool.setuptools.packages.find] |
| 58 | +include = ["amago*"] |
0 commit comments