-
Notifications
You must be signed in to change notification settings - Fork 118
/
setup.py
34 lines (30 loc) · 1.17 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
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="[email protected]",
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<2", "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",
],
)