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 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,11 @@
1
+ _message = "FRAX is currently under development and will be released soon [target: April 2026]"
2
+
3
+ class Robot:
4
+ def __init__(self, *args, **kwargs):
5
+ print(_message)
6
+
7
+ class Manipulator(Robot):
8
+ pass
9
+
10
+ class Humanoid(Robot):
11
+ pass
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ frax/__init__.py
4
+ frax.egg-info/PKG-INFO
5
+ frax.egg-info/SOURCES.txt
6
+ frax.egg-info/dependency_links.txt
7
+ frax.egg-info/requires.txt
8
+ frax.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ numpy
2
+ jax
3
+ pyyaml
4
+ networkx
5
+ lxml
@@ -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
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+