-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
numpy: | ||
- 1.26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
{% set pyproject = load_file_data('pyproject.toml') %} | ||
{% set poetry = pyproject.get('tool', {}).get('poetry') %} | ||
package: | ||
name: "audio-separator" | ||
version: "0.10.1" | ||
name: {{ poetry.get('name') }} | ||
version: {{ poetry.get('version') }} | ||
|
||
about: | ||
home: {{ poetry.get('homepage') }} | ||
license: {{ poetry.get('license') }} | ||
summary: {{ poetry.get('description') }} | ||
description: | | ||
Audio Separator is a Python package that allows you to separate an audio file into two stems, primary and secondary, using a model in the ONNX format trained by @Anjok07 for use with UVR (https://github.com/Anjok07/ultimatevocalremovergui). | ||
doc_url: {{ poetry.get('documentation') }} | ||
dev_url: {{ poetry.get('homepage') }} | ||
|
||
extra: | ||
recipe-maintainers: | ||
- beveradb | ||
|
||
source: | ||
path: .. | ||
|
||
build: | ||
number: 0 | ||
script: poetry install | ||
script: pip install . -vv --no-deps --no-build-isolation | ||
|
||
requirements: | ||
host: | ||
- python>=3.9 | ||
- pip | ||
- poetry | ||
- llvm | ||
- llvmlite | ||
run: | ||
- python>=3.9 | ||
|
||
about: | ||
home: "https://github.com/karaokenerds/python-audio-separator" | ||
license: "MIT" | ||
license_family: MIT | ||
summary: "Easy to use vocal separation on CLI or as a python package, using the amazing MDX-Net models from UVR." | ||
description: | | ||
Audio Separator is a Python package that allows you to separate an audio file into two stems, primary and secondary, using a model in the ONNX format trained by @Anjok07 for use with UVR (https://github.com/Anjok07/ultimatevocalremovergui). | ||
doc_url: "https://github.com/karaokenerds/python-audio-separator" | ||
dev_url: "https://github.com/karaokenerds/python-audio-separator" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- beveradb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "audio-separator" | ||
version = "0.10.0" | ||
version = "0.10.1" | ||
description = "Easy to use vocal separation on CLI or as a python package, using the amazing MDX-Net models from UVR trained by @Anjok07" | ||
authors = ["Andrew Beveridge <[email protected]>"] | ||
license = "MIT" | ||
|