Spaces:
Sleeping
Sleeping
Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +10 -6
pyproject.toml
CHANGED
|
@@ -24,11 +24,12 @@ classifiers = [
|
|
| 24 |
]
|
| 25 |
|
| 26 |
dependencies = [
|
| 27 |
-
"fastapi=
|
| 28 |
-
"uvicorn=
|
| 29 |
-
"pydantic=
|
| 30 |
-
"requests=
|
| 31 |
-
"openai=
|
|
|
|
| 32 |
]
|
| 33 |
|
| 34 |
[project.optional-dependencies]
|
|
@@ -37,12 +38,15 @@ dev = [
|
|
| 37 |
"pytest-cov>=3.0",
|
| 38 |
]
|
| 39 |
|
|
|
|
|
|
|
|
|
|
| 40 |
[project.urls]
|
| 41 |
Repository = "https://github.com/SAI-RAHUL-ROKKAM/meta_hack"
|
| 42 |
Documentation = "https://huggingface.co/spaces/RAHUL-13/bug-report-structuring-env"
|
| 43 |
|
| 44 |
[tool.setuptools]
|
| 45 |
-
packages = ["
|
| 46 |
|
| 47 |
[tool.pytest.ini_options]
|
| 48 |
testpaths = ["tests"]
|
|
|
|
| 24 |
]
|
| 25 |
|
| 26 |
dependencies = [
|
| 27 |
+
"fastapi>=0.115.0",
|
| 28 |
+
"uvicorn>=0.34.0",
|
| 29 |
+
"pydantic>=2.10.0",
|
| 30 |
+
"requests>=2.32.0",
|
| 31 |
+
"openai>=1.58.0",
|
| 32 |
+
"openenv-core>=0.2.0",
|
| 33 |
]
|
| 34 |
|
| 35 |
[project.optional-dependencies]
|
|
|
|
| 38 |
"pytest-cov>=3.0",
|
| 39 |
]
|
| 40 |
|
| 41 |
+
[project.scripts]
|
| 42 |
+
server = "server.app:main"
|
| 43 |
+
|
| 44 |
[project.urls]
|
| 45 |
Repository = "https://github.com/SAI-RAHUL-ROKKAM/meta_hack"
|
| 46 |
Documentation = "https://huggingface.co/spaces/RAHUL-13/bug-report-structuring-env"
|
| 47 |
|
| 48 |
[tool.setuptools]
|
| 49 |
+
packages = ["server"]
|
| 50 |
|
| 51 |
[tool.pytest.ini_options]
|
| 52 |
testpaths = ["tests"]
|