-
Notifications
You must be signed in to change notification settings - Fork 161
/
pyproject.toml
73 lines (65 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = [
"setuptools",
# Cython and numpy are needed when running setup.py, to build extensions
"numpy==2.1.2",
"Cython==3.0.11",
]
build-backend = "setuptools.build_meta"
[project]
name = "friture"
description = "Real-time visualization of live audio data"
license = {file = "COPYING.txt"}
readme = "README.rst"
authors = [
{name = "Timothée Lecomte", email = "[email protected]"},
]
keywords = ["audio", "spectrum", "spectrogram"]
classifiers=[
"Programming Language :: Python",
"Programming Language :: Cython",
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Speech"
]
dynamic = ["version"]
dependencies = [
"sounddevice==0.5.1",
"rtmixer==0.1.7",
"docutils==0.21.2",
"numpy==2.1.2",
"PyQt5==5.15.11",
"platformdirs==4.3.6",
"pyrr==0.10.3",
"pyinstaller==6.11.0"
]
[project.optional-dependencies]
dev = [
"mypy==1.13.0",
"PyQt5-stubs==5.15.6.0",
]
[project.scripts]
friture = "friture.analyzer:main"
[project.urls]
Homepage = "http://www.friture.org"
Repository = "https://github.com/tlecomte/friture"
Issues = "https://github.com/tlecomte/friture/issues"
[tool.setuptools]
packages=[
"friture",
"friture.playback",
"friture.plotting",
"friture.generators",
"friture.signal",
"friture_extensions"
]
[tool.setuptools.data-files]
"share/applications" = ["appimage/friture.desktop"]
[tool.setuptools.dynamic]
version = {attr = "friture.__version__"}