zkwentz commited on
Commit
3c6202e
·
verified ·
1 Parent(s): 179b760

Upload folder using huggingface_hub

Browse files
src/core/openenv_core.egg-info/PKG-INFO CHANGED
@@ -16,6 +16,7 @@ Requires-Dist: fastapi>=0.104.0
16
  Requires-Dist: uvicorn>=0.24.0
17
  Requires-Dist: huggingface_hub>=0.20.0
18
  Requires-Dist: rich>=13.0.0
 
19
  Provides-Extra: dev
20
  Requires-Dist: pytest>=7.0.0; extra == "dev"
21
  Requires-Dist: black>=23.0.0; extra == "dev"
 
16
  Requires-Dist: uvicorn>=0.24.0
17
  Requires-Dist: huggingface_hub>=0.20.0
18
  Requires-Dist: rich>=13.0.0
19
+ Requires-Dist: typer>=0.9.0
20
  Provides-Extra: dev
21
  Requires-Dist: pytest>=7.0.0; extra == "dev"
22
  Requires-Dist: black>=23.0.0; extra == "dev"
src/core/openenv_core.egg-info/SOURCES.txt CHANGED
@@ -8,6 +8,7 @@ pyproject.toml
8
  ./http_env_client.py
9
  ../openenv_cli/__init__.py
10
  ../openenv_cli/__main__.py
 
11
  ../openenv_cli/commands/__init__.py
12
  ../openenv_cli/commands/push.py
13
  ../openenv_cli/core/__init__.py
 
8
  ./http_env_client.py
9
  ../openenv_cli/__init__.py
10
  ../openenv_cli/__main__.py
11
+ ../openenv_cli/_cli_utils.py
12
  ../openenv_cli/commands/__init__.py
13
  ../openenv_cli/commands/push.py
14
  ../openenv_cli/core/__init__.py
src/core/openenv_core.egg-info/requires.txt CHANGED
@@ -3,6 +3,7 @@ fastapi>=0.104.0
3
  uvicorn>=0.24.0
4
  huggingface_hub>=0.20.0
5
  rich>=13.0.0
 
6
 
7
  [dev]
8
  pytest>=7.0.0
 
3
  uvicorn>=0.24.0
4
  huggingface_hub>=0.20.0
5
  rich>=13.0.0
6
+ typer>=0.9.0
7
 
8
  [dev]
9
  pytest>=7.0.0
src/core/pyproject.toml CHANGED
@@ -20,6 +20,7 @@ dependencies = [
20
  "uvicorn>=0.24.0",
21
  "huggingface_hub>=0.20.0",
22
  "rich>=13.0.0",
 
23
  ]
24
 
25
  [project.scripts]
@@ -52,4 +53,5 @@ packages = [
52
  "openenv_cli.core",
53
  "openenv_cli.utils",
54
  ]
 
55
  package-dir = {"openenv_core" = ".", "openenv_cli" = "../openenv_cli"}
 
20
  "uvicorn>=0.24.0",
21
  "huggingface_hub>=0.20.0",
22
  "rich>=13.0.0",
23
+ "typer>=0.9.0",
24
  ]
25
 
26
  [project.scripts]
 
53
  "openenv_cli.core",
54
  "openenv_cli.utils",
55
  ]
56
+ # Note: _cli_utils is included automatically as part of openenv_cli package
57
  package-dir = {"openenv_core" = ".", "openenv_cli" = "../openenv_cli"}