proxy3d/multi-motions-28
141
1[build-system]2requires = ["setuptools>=68", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "multi-motions-28"7version = "1.0.0"8description = "Inference-only Multi-Motions 28 EN/RU classifier based on XLM-RoBERTa with GoEmotions-compatible outputs"9authors = [10 { name = "Ilya Zelenskiy" }11]12readme = "README.md"13requires-python = ">=3.10"14license = {text = "MIT"}15dependencies = [16 "torch>=2.2",17 "transformers>=4.44",18 "huggingface-hub>=0.24",19]20 21[project.urls]22Homepage = "https://huggingface.co/proxy3d/multi-motions-28"23Telegram = "https://t.me/greenruff"24"Communication Styles article" = "https://iproxy3d.github.io/communication-styles-llm/"25"Communication Styles GitHub" = "https://github.com/iproxy3d/communication-styles-llm"26 27[tool.setuptools]28packages = ["goemotions_en_ru"]29 30[tool.setuptools.package-data]31goemotions_en_ru = ["*.json"]32 