-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (38 loc) · 888 Bytes
/
pyproject.toml
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
[build-system]
requires = [
'setuptools'
]
build-backend = "setuptools.build_meta"
[project]
name = "vocos-mlx"
version = "0.0.7"
authors = [{name = "Lucas Newman", email = "[email protected]"}]
license = {text = "MIT"}
description = "Vocos - MLX"
readme = "README.md"
keywords = [
"artificial intelligence",
"asr",
"audio-generation",
"deep learning",
"transformers",
"text-to-speech"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = [
"huggingface_hub",
"mlx",
"numpy",
"pyyaml"
]
[project.urls]
Homepage = "https://github.com/lucasnewman/vocos-mlx"
[tool.setuptools]
packages = ["vocos_mlx"]