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