-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 1.34 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
35
36
37
38
import os
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
with open(os.path.join("lanro_gym", "VERSION"), "r") as f:
__version__ = f.read().strip()
setup(
name="lanro_gym",
description="Gymnasium multi-goal environments for goal-conditioned and language-conditioned deep reinforcement learning build with PyBullet",
author="Frank Röder",
author_email="[email protected]",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/frankroeder/lanro-gym",
packages=[package for package in find_packages() if package.startswith("lanro_gym")],
package_data={ "lanro_gym": ["VERSION"] },
include_package_data=True,
version=__version__,
install_requires=["gymnasium==0.29.1", "pybullet", "numpy"],
extras_require={
"dev": ["pytest", "ruff", "ipdb", "glfw"],
"extra": [
"stable-baselines3 @ git+https://github.com/DLR-RM/stable-baselines3.git"
],
},
python_requires=">=3.8",
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)