| [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"] |