diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fc3b780 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup + +setup( + name='ai2thor-rearrangement', + description="Fork of repo. Enables simple use of ai2thor environment for meta-rl agents", + author="allenai", + packages=["baseline_configs", "datagen", "rearrange"], + install_requires=[ + "ai2thor>=2.7.2,!=2.8.0", + "allenact>=0.4.0", + "allenact_plugins[ithor]>=0.4.0", + "numpy", + "torch>1.6.0", + "torchvision>=0.7.0", + "matplotlib", + "scipy", + "stringcase", + "lru-dict", + "networkx", + "compress-pickle==1.2.0", + "packaging", + ] +) \ No newline at end of file