File size: 697 Bytes
5952424 8ce648b 5952424 | 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 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "stoicheia"
version = "0.1.0"
description = "Stoicheia: a character-level masked-diffusion backbone for Ancient Greek, plus downstream heads for morphological tagging, dependency parsing, meter/macronization, and documentary restoration."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "Eric Cullhed" },
{ name = "Albin Thörn Cleland" },
]
[tool.setuptools]
packages = [
"model",
"data",
"train",
"eval",
"tagger",
"parser",
"meter",
"insc",
"insc.data",
"insc.train",
"insc.eval",
]
|