Skip to content

Commit

Permalink
Added classifiers, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
beveradb committed Dec 27, 2023
1 parent 104e42a commit d12e2b9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
15 changes: 14 additions & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,27 @@ about:
extra:
recipe-maintainers:
- beveradb
authors:
{% for author in project['authors'] %}
- '{{ author['name'] }} <{{ author['email'] }}>'
{% endfor %}
classifiers:
{% for classifier in project['classifiers'] %}
- '{{ classifier }}'
{% endfor %}

source:
path: ..

build:
number: 0
noarch: python
script: pip install . -vv --no-deps --no-build-isolation

entry_points:
{% for script in project['scripts'] %}
- '{{ script }}={{ project['scripts'][script] }}'
{% endfor %}

requirements:
host:
- python >=3.9
Expand Down
15 changes: 14 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "audio-separator"
version = "0.10.3"
version = "0.10.4"
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"
Expand All @@ -13,6 +13,19 @@ packages = [{include = "audio_separator"}]
homepage = "https://github.com/karaokenerds/python-audio-separator"
repository = "https://github.com/karaokenerds/python-audio-separator"
documentation = "https://github.com/karaokenerds/python-audio-separator/blob/main/README.md"
keywords = ["audio", "sound", "karaoke"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

[tool.poetry.dependencies]
python = ">=3.9"
Expand Down

0 comments on commit d12e2b9

Please sign in to comment.