-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
92 lines (82 loc) · 2.2 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mini-eq"
version = "0.7.4"
description = "Compact PipeWire system-wide parametric equalizer for Linux desktops."
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [{ name = "bhack" }]
keywords = [
"audio",
"desktop",
"equalizer",
"equalizer-apo",
"filter-chain",
"flatpak",
"gtk",
"libadwaita",
"linux",
"parametric-eq",
"pipewire-gobject",
"pipewire",
"spectrum-analyzer",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Desktop Environment",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
]
dependencies = ["numpy>=1.26", "pipewire-gobject>=0.3.6,<0.4"]
[project.urls]
Homepage = "https://github.com/bhack/mini-eq"
Repository = "https://github.com/bhack/mini-eq"
Issues = "https://github.com/bhack/mini-eq/issues"
Changelog = "https://github.com/bhack/mini-eq/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = ["pytest>=8"]
dev = [
"build>=1.2",
"coverage>=7.13",
"packaging>=24.2",
"Pillow>=10",
"pytest>=8",
"pytest-cov>=7",
"pytest-deadfixtures>=2.2",
"ruff>=0.12",
"twine>=6.2",
"vulture>=2.14",
]
[project.scripts]
mini-eq = "mini_eq.__main__:console_main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
mini_eq = [
"style.css",
"assets/icons/hicolor/scalable/apps/*.svg",
"assets/icons/hicolor/symbolic/apps/*.svg",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "B"]
ignore = ["E402"]