Spaces:
Sleeping
Sleeping
add rlcube python
Browse files- rlcube/.python-version +1 -0
- rlcube/README.md +0 -0
- rlcube/main.py +6 -0
- rlcube/pyproject.toml +10 -0
- rlcube/uv.lock +0 -0
rlcube/.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
rlcube/README.md
ADDED
|
File without changes
|
rlcube/main.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def main():
|
| 2 |
+
print("Hello from rlcube!")
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
if __name__ == "__main__":
|
| 6 |
+
main()
|
rlcube/pyproject.toml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "rlcube"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"gymnasium>=1.2.0",
|
| 9 |
+
"stable-baselines3>=2.7.0",
|
| 10 |
+
]
|
rlcube/uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|