1 Star 0 Fork 0

vjk0909/panda-gym

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
import os
from setuptools import find_packages, setup
with open(os.path.join("panda_gym", "version.txt"), "r") as file_handler:
__version__ = file_handler.read().strip()
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="panda_gym",
description="Set of robotic environments based on PyBullet physics engine and gymnasium.",
author="Quentin GALLOUÉDEC",
author_email="gallouedec.quentin@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/qgallouedec/panda-gym",
packages=find_packages(),
include_package_data=True,
package_data={"panda_gym": ["version.txt"]},
version=__version__,
install_requires=["gymnasium>=0.26", "pybullet", "numpy", "scipy"],
extras_require={
"develop": ["pytest-cov", "black", "isort", "pytype", "sphinx", "sphinx-rtd-theme"],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vjk0909/panda-gym.git
git@gitee.com:vjk0909/panda-gym.git
vjk0909
panda-gym
panda-gym
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385