-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.31 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
[project]
name = "lowhum"
version = "0.4.5"
description = "Deep Brown Noise for Focus as a MenuBar App & CLI Tool"
readme = "README.md"
license = "MIT"
authors = [{ name = "Luis Markmann" }]
requires-python = ">=3.12"
keywords = ["brown-noise", "focus", "audio", "macos", "menu-bar"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: MacOS X",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"numpy>=2.4",
"pillow>=12.0",
"rumps>=0.4.0",
"scipy>=1.17",
"sounddevice>=0.5",
"typer>=0.23",
]
[dependency-groups]
dev = [
"ty>=0.0.22",
"pytest>=9.0",
"ruff>=0.15",
"setuptools>=82",
]
[project.scripts]
lowhum = "lowhum.cli:app"
lhm = "lowhum.cli:app"
[project.urls]
Homepage = "https://lmarkmann.github.io/lowhum/"
Repository = "https://github.com/lmarkmann/lowhum"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/lowhum"]
exclude = ["*.wav"]
[tool.ruff]
line-length = 80
[tool.ty.rules]
# pyobjc (AppKit, Foundation) and rumps lack type stubs;
# suppress unresolved-attribute / unresolved-import globally
unresolved-import = "ignore"
unresolved-attribute = "ignore"