add pyproject.toml

This commit is contained in:
2025-05-21 11:30:08 +02:00
parent b5c25239a0
commit b8f6cba2ca
6 changed files with 203 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "network-audio-streaming"
version = "0.1.0"
description = ""
authors = [
{name = "pstruebi",email = "struebin.patrick@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy (>=2.2.6,<3.0.0)",
"sounddevice (>=0.5.2,<0.6.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"