john melesky пре 2 година
родитељ
комит
7e03593642
2 измењених фајлова са 53 додато и 0 уклоњено
  1. 37 0
      poetry.lock
  2. 16 0
      pyproject.toml

+ 37 - 0
poetry.lock

@@ -0,0 +1,37 @@
+# This file is automatically @generated by Poetry and should not be changed by hand.
+
+[[package]]
+name = "mingus"
+version = "0.6.1"
+description = "mingus is a music package for Python"
+category = "main"
+optional = false
+python-versions = "*"
+files = [
+    {file = "mingus-0.6.1-py2.py3-none-any.whl", hash = "sha256:036a85b83d2f5542e2fe8fbfff77d2b29b82527360b1687f9ec7824fcd892f9f"},
+    {file = "mingus-0.6.1.tar.gz", hash = "sha256:85ca22469f5b0758585bbc5cd8162bbe4da049ce37d79c144378a922be9faf05"},
+]
+
+[package.dependencies]
+six = "*"
+
+[package.extras]
+fft = ["numpy"]
+fluidsynth = ["numpy"]
+
+[[package]]
+name = "six"
+version = "1.16.0"
+description = "Python 2 and 3 compatibility utilities"
+category = "main"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
+files = [
+    {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
+    {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
+]
+
+[metadata]
+lock-version = "2.0"
+python-versions = "^3.11"
+content-hash = "86790ec4669a776d28289afe0263e1497b8ecb8feb0ccccb269d5d813ac37971"

+ 16 - 0
pyproject.toml

@@ -0,0 +1,16 @@
+[tool.poetry]
+name = "music-loops"
+version = "0.1.0"
+description = "playing with mingus"
+authors = ["john melesky <code@phaedrusdeinus.org>"]
+readme = "README.md"
+packages = [{include = "music_loops"}]
+
+[tool.poetry.dependencies]
+python = "^3.11"
+mingus = "^0.6.1"
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"