frax 0.0.1a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- frax-0.0.1a1/PKG-INFO +21 -0
- frax-0.0.1a1/README.md +7 -0
- frax-0.0.1a1/frax/__init__.py +11 -0
- frax-0.0.1a1/frax.egg-info/PKG-INFO +21 -0
- frax-0.0.1a1/frax.egg-info/SOURCES.txt +8 -0
- frax-0.0.1a1/frax.egg-info/dependency_links.txt +1 -0
- frax-0.0.1a1/frax.egg-info/requires.txt +5 -0
- frax-0.0.1a1/frax.egg-info/top_level.txt +1 -0
- frax-0.0.1a1/pyproject.toml +24 -0
- frax-0.0.1a1/setup.cfg +4 -0
frax-0.0.1a1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: frax
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Fast Robot Kinematics and Dynamics in JAX
|
|
5
|
+
Author-email: Daniel Morton <danielpmorton@gmail.com>
|
|
6
|
+
Keywords: robot,kinematics,dynamics,jax
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: jax
|
|
11
|
+
Requires-Dist: pyyaml
|
|
12
|
+
Requires-Dist: networkx
|
|
13
|
+
Requires-Dist: lxml
|
|
14
|
+
|
|
15
|
+
# `frax`: Fast Robot Kinematics and Dynamics in JAX
|
|
16
|
+
|
|
17
|
+
`frax` is a fast kinematics and dynamics library in pure Python, using [JAX](https://github.com/jax-ml/jax) for JIT-compilation and automatic differentiation.
|
|
18
|
+
|
|
19
|
+
With `frax`, you can design high-performance inverse-kinematics and inverse-dynamics controllers at the speed of `pinocchio`, ease of use of Python, and differentiation and parallelization-compatibilty of `MJX`.
|
|
20
|
+
|
|
21
|
+
**NOTE**: This is a pre-release version for testing purposes. An formal launch is targeted in April 2026. Please reach out if you are interested.
|
frax-0.0.1a1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# `frax`: Fast Robot Kinematics and Dynamics in JAX
|
|
2
|
+
|
|
3
|
+
`frax` is a fast kinematics and dynamics library in pure Python, using [JAX](https://github.com/jax-ml/jax) for JIT-compilation and automatic differentiation.
|
|
4
|
+
|
|
5
|
+
With `frax`, you can design high-performance inverse-kinematics and inverse-dynamics controllers at the speed of `pinocchio`, ease of use of Python, and differentiation and parallelization-compatibilty of `MJX`.
|
|
6
|
+
|
|
7
|
+
**NOTE**: This is a pre-release version for testing purposes. An formal launch is targeted in April 2026. Please reach out if you are interested.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: frax
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Fast Robot Kinematics and Dynamics in JAX
|
|
5
|
+
Author-email: Daniel Morton <danielpmorton@gmail.com>
|
|
6
|
+
Keywords: robot,kinematics,dynamics,jax
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: jax
|
|
11
|
+
Requires-Dist: pyyaml
|
|
12
|
+
Requires-Dist: networkx
|
|
13
|
+
Requires-Dist: lxml
|
|
14
|
+
|
|
15
|
+
# `frax`: Fast Robot Kinematics and Dynamics in JAX
|
|
16
|
+
|
|
17
|
+
`frax` is a fast kinematics and dynamics library in pure Python, using [JAX](https://github.com/jax-ml/jax) for JIT-compilation and automatic differentiation.
|
|
18
|
+
|
|
19
|
+
With `frax`, you can design high-performance inverse-kinematics and inverse-dynamics controllers at the speed of `pinocchio`, ease of use of Python, and differentiation and parallelization-compatibilty of `MJX`.
|
|
20
|
+
|
|
21
|
+
**NOTE**: This is a pre-release version for testing purposes. An formal launch is targeted in April 2026. Please reach out if you are interested.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
frax
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "frax"
|
|
7
|
+
version = "0.0.1a1"
|
|
8
|
+
description = "Fast Robot Kinematics and Dynamics in JAX"
|
|
9
|
+
authors = [{ name = "Daniel Morton", email = "danielpmorton@gmail.com" }]
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
keywords = ["robot", "kinematics", "dynamics", "jax"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"numpy",
|
|
17
|
+
"jax",
|
|
18
|
+
"pyyaml",
|
|
19
|
+
"networkx",
|
|
20
|
+
"lxml",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
include = ["frax*"]
|
frax-0.0.1a1/setup.cfg
ADDED