| from setuptools import find_packages, setup |
|
|
| setup( |
| name="popgym-arcade", |
| version="0.0.3", |
| author="Wang Zekang, He Zhe, Steven Morad", |
| author_email="", |
| description="POMDP Arcade Environments on the GPU", |
| long_description=open("README.md").read(), |
| long_description_content_type="text/markdown", |
| url="", |
| packages=find_packages(), |
| entry_points={ |
| "console_scripts": [ |
| "popgym-arcade-play = popgym_arcade.play:main", |
| ], |
| }, |
| install_requires=["gymnax", "dm_pix", "jaxtyping", "pygame"], |
| extras_require={ |
| "baselines": [ |
| "optax", |
| "equinox", |
| "distreqx", |
| "wandb", |
| "beartype", |
| "jaxtyping", |
| "imageio", |
| ], |
| }, |
| classifiers=[ |
| "Programming Language :: Python :: 3", |
| "License :: OSI Approved :: MIT License", |
| "Operating System :: OS Independent", |
| ], |
| python_requires=">=3.10", |
| ) |
|
|