Spaces:
Sleeping
Sleeping
error
Browse files- __pycache__/inference.cpython-313.pyc +0 -0
- test_dir/test_env/openenv_test_env.egg-info/PKG-INFO +9 -0
- test_dir/test_env/openenv_test_env.egg-info/SOURCES.txt +14 -0
- test_dir/test_env/openenv_test_env.egg-info/dependency_links.txt +1 -0
- test_dir/test_env/openenv_test_env.egg-info/entry_points.txt +2 -0
- test_dir/test_env/openenv_test_env.egg-info/requires.txt +5 -0
- test_dir/test_env/openenv_test_env.egg-info/top_level.txt +1 -0
__pycache__/inference.cpython-313.pyc
ADDED
|
Binary file (4.18 kB). View file
|
|
|
test_dir/test_env/openenv_test_env.egg-info/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Metadata-Version: 2.4
|
| 2 |
+
Name: openenv-test_env
|
| 3 |
+
Version: 0.1.0
|
| 4 |
+
Summary: Test Env environment for OpenEnv
|
| 5 |
+
Requires-Python: >=3.10
|
| 6 |
+
Requires-Dist: openenv-core[core]>=0.2.2
|
| 7 |
+
Provides-Extra: dev
|
| 8 |
+
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
| 9 |
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
test_dir/test_env/openenv_test_env.egg-info/SOURCES.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
README.md
|
| 2 |
+
pyproject.toml
|
| 3 |
+
./__init__.py
|
| 4 |
+
./client.py
|
| 5 |
+
./models.py
|
| 6 |
+
openenv_test_env.egg-info/PKG-INFO
|
| 7 |
+
openenv_test_env.egg-info/SOURCES.txt
|
| 8 |
+
openenv_test_env.egg-info/dependency_links.txt
|
| 9 |
+
openenv_test_env.egg-info/entry_points.txt
|
| 10 |
+
openenv_test_env.egg-info/requires.txt
|
| 11 |
+
openenv_test_env.egg-info/top_level.txt
|
| 12 |
+
server/__init__.py
|
| 13 |
+
server/app.py
|
| 14 |
+
server/test_env_environment.py
|
test_dir/test_env/openenv_test_env.egg-info/dependency_links.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
|
test_dir/test_env/openenv_test_env.egg-info/entry_points.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[console_scripts]
|
| 2 |
+
server = test_env.server.app:main
|
test_dir/test_env/openenv_test_env.egg-info/requires.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
openenv-core[core]>=0.2.2
|
| 2 |
+
|
| 3 |
+
[dev]
|
| 4 |
+
pytest>=8.0.0
|
| 5 |
+
pytest-cov>=4.0.0
|
test_dir/test_env/openenv_test_env.egg-info/top_level.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
test_env
|