-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
a4bf185
commit 2553674
Showing
3 changed files
with
8 additions
and
5 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
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,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "twang" | ||
version = "0.0.1" | ||
description = "Making it easy to mess with music & machine learning" | ||
version = "0.0.2" | ||
description = "Machine learning tools for guitarists" | ||
license = "MIT" | ||
authors = ["mhsb <[email protected]>"] | ||
homepage = 'https://github.com/michaelhball/twang' | ||
|
@@ -13,11 +13,11 @@ readme = "README.md" | |
python = "^3.8" | ||
Cython = "^0.29.33" | ||
ipython = "^8.10.0" | ||
librosa = "^0.10.0" | ||
librosa = "^0.10.1" | ||
mido = "^1.2.10" | ||
pre-commit = "^2.20.0" | ||
pydub = "^0.25.1" | ||
ruff = "^0.0.254" | ||
ruff = "^0.1.8" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7.2.1" | ||
|
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,3 @@ | ||
import importlib.metadata | ||
|
||
__version__ = importlib.metadata.version(__package__.split(".")[-1]) |