Spaces:
Configuration error
Configuration error
Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +26 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "stratego"
|
| 3 |
+
version = "0.0.1"
|
| 4 |
+
requires-python = ">=3.10"
|
| 5 |
+
dependencies = [
|
| 6 |
+
"textarena",
|
| 7 |
+
"langchain-ollama",
|
| 8 |
+
"langchain-core",
|
| 9 |
+
"pydantic>=2"
|
| 10 |
+
]
|
| 11 |
+
|
| 12 |
+
[build-system]
|
| 13 |
+
requires = ["setuptools>=61", "wheel"]
|
| 14 |
+
build-backend = "setuptools.build_meta"
|
| 15 |
+
|
| 16 |
+
[tool.setuptools.packages.find]
|
| 17 |
+
exclude = ["log", "log.*"]
|
| 18 |
+
|
| 19 |
+
[project.optional-dependencies]
|
| 20 |
+
hf = ["transformers>=4.44", "accelerate", "torch", "hf_xet"]
|
| 21 |
+
web = ["streamlit>=1.28.0", "streamlit-chat>=0.0.2.1", "pandas>=1.5", "plotly>=5.0"]
|
| 22 |
+
|
| 23 |
+
[project.scripts]
|
| 24 |
+
stratego = "stratego.main:cli"
|
| 25 |
+
stratego-install-env = "stratego.installer:main"
|
| 26 |
+
benchmark = "stratego.benchmarking.main_benchmark:main"
|