Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaux1 committed Jun 28, 2024
1 parent 87c01bb commit 50d92c7
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@
with open("README.md", "r") as f:
long_description = f.read()

setup(name='deformable_gym',
version="0.3.3",
maintainer='Melvin Laux',
maintainer_email='melvin.laux@uni-bremen.de',
description='Gym environments for grasping deformable objects',
long_description=long_description,
long_description_content_type="text/markdown",
license='BSD-3-Clause',
packages=["deformable_gym"],
install_requires=[
"pybullet",
"gymnasium",
"numpy>=1.23.5,<2.0.0",
"pytransform3d"
])
setup(
name="deformable_gym",
version="0.3.4",
maintainer="Melvin Laux",
maintainer_email="melvin.laux@uni-bremen.de",
description="Gym environments for grasping deformable objects",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD-3-Clause",
packages=["deformable_gym"],
install_requires=[
"pybullet",
"gymnasium",
"numpy>=1.23.5,<2.0.0",
"pytransform3d",
],
)

0 comments on commit 50d92c7

Please sign in to comment.