File size: 842 Bytes
803cb67 | 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 28 29 30 31 32 33 | [project]
name = "dataclaw"
version = "0.1.0"
description = "DataClaw — Process-oriented data-analysis benchmark for OpenClaw-style end-to-end agents"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "The DataClaw Authors"}]
keywords = ["benchmark", "agent", "data-analysis", "openclaw", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.0",
]
[project.urls]
homepage = "https://gtmllab.github.io/DataClaw/"
repository = "https://github.com/GTMLLab/DataClaw"
[tool.ruff]
line-length = 100
target-version = "py310"
|