CoolFace
Apppublic

build-small-hackathon/hackathon-advisor

sourceHugging Facemitupdated 3mo agoView on Hugging Face
16likes
pyproject.toml67 linesDownload Raw Back to root
1[project]2name = "hackathon-advisor"3version = "0.1.0"4description = "Text-first originality advisor for small-model project ideas."5readme = "README.md"6requires-python = ">=3.11,<3.13"7license = { text = "MIT" }8authors = [{ name = "Jacob LinCool" }]9dependencies = [10  "accelerate>=1.0,<2",11  "Cython>=3,<4",12  "gradio>=6.16.0,<7",13  "huggingface-hub>=0.36,<1",14  "llama-cpp-python>=0.3.26,<1",15  "nemo_toolkit[asr]==2.7.3",16  "numpy>=2,<3",17  "packaging>=24,<26",18  "peft>=0.13,<1",19  "pillow>=10,<13",20  "requests>=2.32,<3",21  "scikit-learn>=1.5,<2",22  "spaces>=0.50,<1",23  "torch>=2.8,<3",24  "transformers>=4.55,<5",25]26 27[project.optional-dependencies]28dev = [29  "pytest>=8.0,<9",30]31model = [32  "accelerate>=1.0,<2",33  "Cython>=3,<4",34  "llama-cpp-python>=0.3.26,<1",35  "nemo_toolkit[asr]==2.7.3",36  "numpy>=2,<3",37  "packaging>=24,<26",38  "peft>=0.13,<1",39  "spaces>=0.50,<1",40  "scikit-learn>=1.5,<2",41  "torch>=2.8,<3",42  "transformers>=4.55,<5",43]44train = [45  "accelerate>=1.0,<2",46  "huggingface-hub>=0.36,<1",47  "peft>=0.13,<1",48  "torch>=2.8,<3",49  "transformers>=4.55,<5",50]51index = [52  "llama-cpp-python>=0.3.26,<1",53  "modal>=1.4,<2",54]55 56[tool.pytest.ini_options]57testpaths = ["tests"]58pythonpath = ["."]59 60[tool.ruff]61line-length = 10062target-version = "py311"63 64[tool.ruff.lint.per-file-ignores]65# CLI scripts insert the repo root on sys.path before importing the package.66"scripts/*.py" = ["E402"]67