Skip to content

Commit

Permalink
Loosen Dependency Requirements (#33)
Browse files Browse the repository at this point in the history
* Update pyproject.toml

Loosen Numpy and Scipy requirements

* Update pyproject.toml

Changed transformers requirement

* Update pyproject.toml

Fixed missing models folder issue
  • Loading branch information
OoiHS authored Sep 4, 2024
1 parent eb610fc commit dd960a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
'numpy==1.23.4',
'numpy>=1.23.4',
'torch',
'scipy==1.10.1',
'scipy>=1.10.1',
'tqdm',
'soundfile',
'resampy',
'torchlibrosa',
'laion_clap',
'transformers<=4.30.2',
'transformers>=4.30.2',
'torchaudio',
'encodec',
]
Expand All @@ -35,4 +35,4 @@ dependencies = [
"Homepage" = "https://github.com/gudgud96/frechet-audio-distance"

[tool.setuptools]
packages = ["frechet_audio_distance"]
packages = ["frechet_audio_distance", "frechet_audio_distance.models"]

0 comments on commit dd960a0

Please sign in to comment.