diff --git a/pyproject.toml b/pyproject.toml index 5c96ba1..8a49117 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11" ] -homepage = "https://github.com/ALRhub/fancy_gym/" -repository = "https://github.com/ALRhub/fancy_gym/" + +requires-python = ">=3.7" [project.urls] Homepage = "https://github.com/ALRhub/fancy_gym/" @@ -34,12 +34,10 @@ Homepage = "https://github.com/ALRhub/fancy_gym/" requires = ["setuptools>=51.0.0", "wheel"] build-backend = "setuptools.build_meta" -[project.scripts] -# If you have any entry points (scripts), define them here. - -[project.dependencies] -gymnasium = ">=0.26.0" -mp_pytorch = "<=0.1.3" +project.dependencies = [ + "gymnasium>=0.26.0", + "mp_pytorch<=0.1.3" +] [project.optional-dependencies] dmc = ["shimmy[dm-control]", "Shimmy==1.0.0"] @@ -76,6 +74,3 @@ testing = [ "jax>=0.4.0", "jaxlib>=0.4.0" ] - -[project.python-requires] -python_version = ">=3.7"