Skip to content

Commit

Permalink
Add pyinstaller as a dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
arkrow committed Jul 25, 2024
1 parent 59f9b1a commit 4a5437c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.9"
python = ">=3.9,<3.13"
librosa = "0.10.2"
numpy = ">=1.25.0, <2.0.0"
soundfile = ">=0.12.1"
Expand All @@ -44,6 +44,12 @@ click-params = "^0.5.0"
click-option-group = "^0.5.6"
lazy-loader = ">=0.3"

[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
pyinstaller = "6.9.0"

[tool.poetry.scripts]
pymusiclooper = 'pymusiclooper.__main__:cli'

Expand All @@ -65,7 +71,7 @@ disable-upx = true

[tool.poetry-pyinstaller-plugin.scripts]
# Single file bundled
pymusiclooper = { source = "pymusiclooper/__main__.py", type = "onefile", bundle = true }
pymusiclooper = { source = "pymusiclooper/__main__.py", type = "onefile" }

[tool.poetry-pyinstaller-plugin.collect]
# Collect all submodules, data files & binaries for 'sounddevice'
Expand Down

0 comments on commit 4a5437c

Please sign in to comment.