Spaces:
Sleeping
Sleeping
Fix python version and add multi-mode files
Browse files- app.py +5 -0
- pyproject.toml +7 -4
- uv.lock +0 -0
app.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def main():
|
| 2 |
+
print("OpenEnv Server starting...")
|
| 3 |
+
|
| 4 |
+
if __name__ == "__main__":
|
| 5 |
+
main()
|
pyproject.toml
CHANGED
|
@@ -7,8 +7,11 @@ name = "meta-hackathon-submission"
|
|
| 7 |
version = "0.1.0"
|
| 8 |
description = "My hackathon submission"
|
| 9 |
readme = "README.md"
|
| 10 |
-
requires-python = ">=3.
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
version = "0.1.0"
|
| 8 |
description = "My hackathon submission"
|
| 9 |
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
|
| 12 |
+
dependencies = [
|
| 13 |
+
"openenv-core>=0.2.0"
|
| 14 |
+
]
|
| 15 |
+
|
| 16 |
+
[project.scripts]
|
| 17 |
+
server = "server.app:main"
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|