linux observer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 29 lines 521 B view raw
1[project] 2name = "solstone-linux" 3version = "0.1.0" 4description = "Standalone Linux desktop observer for solstone" 5readme = "README.md" 6license = "AGPL-3.0-only" 7requires-python = ">=3.10" 8dependencies = [ 9 "requests", 10 "numpy", 11 "soundfile", 12 "soundcard", 13 "dbus-next", 14 "PyGObject", 15] 16 17[project.scripts] 18solstone-linux = "solstone_linux.cli:main" 19 20[dependency-groups] 21dev = [ 22 "pytest", 23 "pytest-asyncio", 24 "ruff", 25] 26 27[build-system] 28requires = ["hatchling"] 29build-backend = "hatchling.build"