Spaces:
Paused
Paused
Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +19 -5
pyproject.toml
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
[project]
|
| 2 |
-
name = "
|
| 3 |
version = "0.1.0"
|
| 4 |
description = "Overview environment for text analysis"
|
| 5 |
requires-python = ">=3.10"
|
| 6 |
-
dependencies = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
-
[
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=45", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
[project]
|
| 6 |
+
name = "openenv-overview-env"
|
| 7 |
version = "0.1.0"
|
| 8 |
description = "Overview environment for text analysis"
|
| 9 |
requires-python = ">=3.10"
|
| 10 |
+
dependencies = [
|
| 11 |
+
"openenv-core[core]>=0.2.2",
|
| 12 |
+
"fastapi>=0.115.0",
|
| 13 |
+
"pydantic>=2.0.0",
|
| 14 |
+
"uvicorn[standard]>=0.24.0",
|
| 15 |
+
]
|
| 16 |
|
| 17 |
+
[tool.setuptools]
|
| 18 |
+
include-package-data = true
|
| 19 |
+
packages = [
|
| 20 |
+
"overview_env",
|
| 21 |
+
"overview_env.server",
|
| 22 |
+
"overview_env.tasks",
|
| 23 |
+
]
|
| 24 |
+
package-dir = { "" = "." }
|