/ pyproject.toml
pyproject.toml
1 [project] 2 name = "src" 3 version = "0.1.0" 4 description = "A language model built from scratch and fine-tuned to discuss the work of major figures in the tradition of Western continental philosophy" 5 authors = [ 6 {name = "kobinabrandon@proton.me"} 7 ] 8 license = {text = "AGPLv3"} 9 readme = "README.md" 10 requires-python = ">=3.13, <3.14" 11 dependencies = [ 12 "requests (>=2.32.5,<3.0.0)", 13 "tqdm (>=4.67.1,<5.0.0)", 14 "torrentp (>=0.2.4,<0.3.0)", 15 "loguru (>=0.7.3,<0.8.0)", 16 "torch (>=2.8.0,<3.0.0)", 17 "tiktoken (>=0.11.0,<0.12.0)", 18 "bs4 (>=0.0.2,<0.0.3)", 19 "python-dotenv (>=1.1.1,<2.0.0)", 20 "pydantic-settings (>=2.10.1,<3.0.0)" 21 ] 22 23 24 [build-system] 25 requires = ["poetry-core>=2.0.0,<3.0.0"] 26 build-backend = "poetry.core.masonry.api"