latin-bert / pyproject.toml
diyclassics's picture
fix: add do_lower_case=True to tokenizer (v1.1.1)
c7b1be1
raw
history blame contribute delete
680 Bytes
[project]
name = "latincy-latinbert"
version = "1.1.1"
description = "HuggingFace-compatible Latin BERT (Bamman & Burns 2020) with standalone tokenizer"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
dependencies = [
"transformers>=4.20.0",
"torch>=1.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
benchmark = [
"pytest>=7.0",
"cltk",
"joblib",
"gdown",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/latincy_latinbert"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (case study reproductions requiring GPU)",
]