Files
OpenSWETraces_cleanup/pyproject.toml
T

48 lines
848 B
TOML

[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "swe-data-processing"
version = "3.0.0"
description = "Deterministic profiling and filtering for Open-SWE-Traces."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "TIGER Lab"}
]
dependencies = [
"pyarrow>=16,<26"
]
[project.optional-dependencies]
tokens = [
"tokenizers>=0.21,<1"
]
dev = [
"pytest>=8,<10",
"ruff>=0.9,<1"
]
[project.scripts]
swe-qc = "swe_data_processing.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]