-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (47 loc) · 1.23 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "twang"
version = "0.0.2"
description = "Machine learning tools for guitarists"
license = "MIT"
authors = ["mhsb <[email protected]>"]
homepage = 'https://github.com/michaelhball/twang'
repository = 'https://github.com/michaelhball/twang'
include = ["LICENSE"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
Cython = "^0.29.33"
ipython = "^8.10.0"
librosa = "^0.10.1"
mido = "^1.2.10"
pre-commit = "^2.20.0"
pydub = "^0.25.1"
ruff = "^0.1.8"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
pytest-sugar = "^0.9.6"
[tool.poetry.group.demucs]
optional = true
[tool.poetry.group.demucs.dependencies]
demucs = "^4.0.0"
[tool.poetry.group.nussl]
optional = true
[tool.poetry.group.nussl.dependencies]
nussl = "^1.1.9"
soxbindings = "^1.2.3"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "F", "I", "TID", "W"]
exclude = [".git", ".ruff_cache", "dist", "docker", "img"]
fix = false
ignore-init-module-imports = true
line-length = 120
target-version = "py38" # assume Python 3.8 style
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.isort]
combine-as-imports = true
force-single-line = false
order-by-type = false