-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (32 loc) · 1.05 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
[tool.poetry]
name = "pycarla"
version = "0.3.3"
description = "Use VST/LV2/etc. plugins with realtime abilities in Python"
authors = ["Federico Simonetta <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.rst"
homepage = "https://pycarla.readthedocs.org"
documentation = "https://pycarla.readthedocs.org"
repository = "https://github.com/00sapo/pycarla"
classifiers = [
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience"
]
[tool.poetry.dependencies]
python = "^3.6"
jack-client = "^0.5.2"
numpy = "^1.19.0"
pysoundfile = "^0.9.0"
PyQt5 = "^5.15.2"
mido = "^1.2.9"
psutil = "^5.8.0"
[tool.poetry.dev-dependencies]
ipdb = "^0.13.2"
ipython = "^7.16.3"