| [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" | |