Skip to content

Commit

Permalink
isaacgym support
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Apr 1, 2024
1 parent 47457d6 commit 326b262
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "third_party/isaacgym"]
path = third_party/isaacgym
url = [email protected]:kscalelabs/isaacgym.git
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""Setup script for the project."""

import re
from typing import List

from setuptools import setup

Expand All @@ -11,11 +12,11 @@


with open("sim/requirements.txt", "r", encoding="utf-8") as f:
requirements: list[str] = f.read().splitlines()
requirements: List[str] = f.read().splitlines()


with open("sim/requirements-dev.txt", "r", encoding="utf-8") as f:
requirements_dev: list[str] = f.read().splitlines()
requirements_dev: List[str] = f.read().splitlines()


with open("sim/__init__.py", "r", encoding="utf-8") as fh:
Expand All @@ -32,7 +33,7 @@
url="https://github.com/kscalelabs/sim",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.11",
python_requires=">=3.8, <3.9",
install_requires=requirements,
tests_require=requirements_dev,
extras_require={"dev": requirements_dev},
Expand Down
6 changes: 4 additions & 2 deletions sim/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# requirements.txt

# Requires Python==3.11
# kscale-onshape-library
# mlfab

torch
kscale-onshape-library
mlfab
1 change: 1 addition & 0 deletions third_party/isaacgym
Submodule isaacgym added at eb2d30

0 comments on commit 326b262

Please sign in to comment.