6881ce2437
Python 3.8 has been deprecated upstream, and any tests depending on Homebrew already stopped working. Following our support policy, we are removing support for 3.8 from our packages, too. PiperOrigin-RevId: 686012836 Change-Id: Ibd220eb9c10e9a74bbd4443c1d7286a1fde9e5e5
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name="mujoco-mjx"
|
|
version = "3.2.3"
|
|
authors = [
|
|
{name = "Google DeepMind", email = "mujoco@deepmind.com"},
|
|
]
|
|
description = "MuJoCo XLA (MJX)"
|
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
license = {text = "Apache License 2.0"}
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Natural Language :: English",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Scientific/Engineering",
|
|
]
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"absl-py",
|
|
"etils[epath]",
|
|
"jax",
|
|
"jaxlib",
|
|
"mujoco>=3.2.3.dev0",
|
|
"scipy",
|
|
"trimesh",
|
|
]
|
|
|
|
[project.scripts]
|
|
mjx-testspeed = "mujoco.mjx.testspeed:main"
|
|
mjx-viewer = "mujoco.mjx.viewer:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/google-deepmind/mujoco/tree/main/mjx"
|
|
Documentation = "https://mujoco.readthedocs.io/en/3.2.3"
|
|
Repository = "https://github.com/google-deepmind/mujoco/tree/main/mjx"
|
|
Changelog = "https://mujoco.readthedocs.io/en/3.2.3/changelog.html"
|