Spaces:
Sleeping
Sleeping
ajaxwin commited on
Commit ·
7fe808d
1
Parent(s): ac7fce1
pyproject.toml updated
Browse files- pyproject.toml +16 -18
pyproject.toml
CHANGED
|
@@ -10,33 +10,31 @@ build-backend = "setuptools.build_meta"
|
|
| 10 |
|
| 11 |
[project]
|
| 12 |
name = "openenv-smartcontractenv"
|
| 13 |
-
version = "
|
| 14 |
description = "Smartcontractenv environment for OpenEnv"
|
| 15 |
requires-python = ">=3.10"
|
| 16 |
dependencies = [
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
"
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.optional-dependencies]
|
| 32 |
-
dev = [
|
| 33 |
-
"pytest>=8.0.0",
|
| 34 |
-
"pytest-cov>=4.0.0",
|
| 35 |
-
]
|
| 36 |
|
| 37 |
[project.scripts]
|
| 38 |
# Server entry point - enables running via: uv run --project . server
|
| 39 |
-
# or:
|
| 40 |
server = "smartcontractenv.server.app:main"
|
| 41 |
|
| 42 |
[tool.setuptools]
|
|
|
|
| 10 |
|
| 11 |
[project]
|
| 12 |
name = "openenv-smartcontractenv"
|
| 13 |
+
version = "1.0.0"
|
| 14 |
description = "Smartcontractenv environment for OpenEnv"
|
| 15 |
requires-python = ">=3.10"
|
| 16 |
dependencies = [
|
| 17 |
+
"openenv-core[core]>=0.2.0",
|
| 18 |
+
"fastapi==0.115.0",
|
| 19 |
+
"uvicorn[standard]==0.30.6",
|
| 20 |
+
"pydantic==2.8.2",
|
| 21 |
+
"openai==1.51.0",
|
| 22 |
+
"httpx==0.27.2",
|
| 23 |
+
"python-multipart==0.0.9",
|
| 24 |
+
"pyyaml==6.0.2",
|
| 25 |
+
"pandas==2.2.2",
|
| 26 |
+
"numpy==2.1.1",
|
| 27 |
+
"scikit-learn==1.5.0",
|
| 28 |
+
"sentence-transformers==3.0.1",
|
| 29 |
+
"nltk==3.9.4"
|
| 30 |
]
|
| 31 |
|
| 32 |
[project.optional-dependencies]
|
| 33 |
+
dev = []
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
[project.scripts]
|
| 36 |
# Server entry point - enables running via: uv run --project . server
|
| 37 |
+
# or: python3 -m smartcontractenv.server.app
|
| 38 |
server = "smartcontractenv.server.app:main"
|
| 39 |
|
| 40 |
[tool.setuptools]
|