KAWK50M-Project / pyproject.toml
Infinity08's picture
Add files using upload-large-folder tool
91ac3cc verified
Raw
History Blame Contribute Delete
544 Bytes
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "kawk50m"
version = "0.1.0"
description = "Korean-first 50M parameter Llama pretraining toolkit"
requires-python = ">=3.10"
dependencies = [
"torch>=2.4,<3",
"transformers>=4.48,<5",
"sentencepiece>=0.2,<1",
"protobuf>=4.25,<7",
"PyYAML>=6,<7",
"numpy>=1.26,<3",
"safetensors>=0.4,<1",
"tqdm>=4.66,<5",
]
[tool.setuptools.packages.find]
include = ["kawk50m*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"