WitGym / pyproject.toml
akshay4's picture
Upload folder using huggingface_hub
b4f3a00 verified
Raw
History Blame Contribute Delete
761 Bytes
[project]
name = "witgym"
version = "0.1.0"
description = "CBR-RAG comedy engine grounded in human comedic precedent"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"torch>=2.2.0",
"transformers>=4.40.0",
"accelerate>=0.29.0",
"pydantic>=2.0.0",
"loguru>=0.7.0",
"rich>=13.0.0",
"sentence-transformers>=3.0.0",
"numpy>=1.26.0",
"python-dotenv>=1.0.0",
"huggingface-hub>=0.22.0",
"datasets>=2.19.0",
"sentencepiece>=0.2.0",
"gradio>=5.0.0",
"kokoro>=0.9.2",
]
[project.scripts]
witgym-chat = "witgym.main:chat_cmd"
witgym-index = "witgym.main:index_cmd"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["witgym"]