File size: 1,552 Bytes
22d5f88 8e04545 22d5f88 8e04545 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "moshi-hf"
version = "0.1.0"
description = "Moshi HuggingFace inference server"
requires-python = ">=3.8"
authors = [
{name = "OMEGA Labs, Inc.", email = "salman@omega-labs.ai"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
readme = "README.md"
dependencies = [
"torch==2.4.1",
"torchaudio==2.4.1",
"torchvision==0.19.1",
"torchdata==0.10.0",
"transformers==4.46.3",
"huggingface-hub==0.27.1",
"safetensors==0.5.1",
"accelerate>=0.20.0",
"datasets==3.1.0",
"requests==2.32.3",
"urllib3==2.2.3",
"pyyaml==6.0.2",
"einops>=0.6.1",
"ulid-py==1.1.0",
"tqdm>=4.65.0",
"sentencepiece==0.2.0",
"jiwer==3.0.5",
"numpy==1.24.4",
"pandas==2.0.3",
"scikit-learn==1.5.2",
"pydub==0.25.1",
"librosa==0.10.2.post1",
"pyannote.audio==3.1.1",
"pesq==0.0.4",
"torchmetrics==1.6.0",
"uvicorn==0.25.0",
"fastapi==0.104.1",
"pydantic==2.5.2"
]
[tool.setuptools]
packages = ["moshi"] |