-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 727 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tool.poetry]
name = "nbswave"
version = "0.4.0"
description = "An utility to render note block songs to a variety of audio formats"
authors = ["Bentroen <bemcdc@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Bentroen/nbswave"
repository = "https://github.com/Bentroen/nbswave"
keywords = ["minecraft", "note-block-studio", "noteblock", "nbs", "audio"]
include = [
"LICENSE",
]
packages = [
{ include = "nbswave" },
]
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
pydub = "^0.25.1"
pynbs = "^1.1.0"
numpy = "^1.23.1"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"