File size: 660 Bytes
e69b72a | 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 34 35 36 | [project]
name = "strata"
version = "0.1.0"
description = "Structured Relational Transduction with Typed Predicate-Hypergraph Attention"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.24",
"pyyaml>=6.0",
"scikit-learn>=1.5",
"sentencepiece>=0.2.0",
"stanza>=1.10,<2",
"torch==2.5.1",
"transformers==4.48.3",
]
[project.optional-dependencies]
data = [
"pyarrow>=14",
]
dev = [
"pyarrow>=14",
"pytest>=8",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
|