-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 813 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
31
32
33
34
35
36
37
38
[tool.poetry]
name = "beatmachine"
version = "4.0.0-alpha.5"
description = "A library for procedurally remixing songs"
authors = ["branchpanic <hi@branchpanic.me>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
madmom = {git = "https://github.com/CPJKU/madmom.git", rev = "27f032e8947204902c675e5e341a3faf5dc86dae"}
jsonschema = "^4.23.0"
numpy = "^2.1.3"
click = "^8.1.7"
soundfile = "^0.12.1"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pytest = "^8.3.4"
isort = "^5.13.2"
[tool.poetry.scripts]
beatmachine = 'beatmachine.__main__:cli'
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning:madmom"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"