-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
41 lines (38 loc) · 854 Bytes
/
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
[tool.poetry]
name = "beqdesigner"
version = "2.0.0a2"
description = "A Qt based app for designing BassEQ filters"
authors = ["3ll3d00d <mattkhan+beqdesigner@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://beqdesigner.readthedocs.io/"
repository = "https://github.com/3ll3d00d/beqdesigner"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
pyqt6 = "*"
ffmpeg-python = "*"
soundfile = "*"
resampy = "*"
pyqtgraph = "*"
numpy = "*"
scipy = "*"
qtpy = "*"
qtawesome = "*"
sortedcontainers = "*"
pillow = "*"
requests = "*"
awesomeversion = "*"
markdown = "*"
plumbum = "*"
graphviz = "*"
sanitize-filename = "*"
matplotlib = "^3.9.2"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
distro = "*"
atomicwrites = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"