Skip to content

Commit

Permalink
Fix dependencies installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnewman committed Oct 14, 2024
1 parent ca45c85 commit 5b5f25e
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
[build-system]
requires = [
"einops",
"einx",
"jieba",
"huggingface_hub",
"mlx",
"numpy",
"setuptools",
"soundfile",
"vocos-mlx"
"setuptools"
]
build-backend = "setuptools.build_meta"

[project]
name = "f5-tts-mlx"
version = "0.0.3"
version = "0.0.4"
authors = [{name = "Lucas Newman", email = "lucasnewman@me.com"}]
license = {text = "MIT"}
description = "F5-TTS - MLX"
Expand All @@ -35,7 +27,17 @@ classifiers = [
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = ['setuptools; python_version>="3.9"']
dependencies = [
"einops",
"einx",
"jieba",
"huggingface_hub",
"mlx",
"numpy",
"setuptools",
"soundfile",
"vocos-mlx"
]

[project.urls]
Homepage = "https://github.com/lucasnewman/f5-tts-mlx"
Expand Down

0 comments on commit 5b5f25e

Please sign in to comment.