StarpowerTechnology/WVY-Liquid-Recurrent-Depth
0
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "wvy-experimental"7version = "1.0.0"8description = "LiquidWVY v1 Tiny-Recursive-LM training kit"9readme = "README.md"10requires-python = ">=3.10"11dependencies = [12 "torch>=2.2",13 "transformers>=5.16,<6",14 "datasets>=2.20",15 "accelerate>=0.33",16 "tokenizers>=0.20",17 "safetensors>=0.4",18]19 20[project.optional-dependencies]21dev = ["pytest>=8"]22 23[project.scripts]24wvy-scan = "wvy_experimental.scan_data:main"25wvy-build = "wvy_experimental.build_config:main"26wvy-tokenizer = "wvy_experimental.prepare_tokenizer:main"27wvy-train = "wvy_experimental.train:main"28 29[tool.setuptools.packages.find]30where = ["src"]31 