From 657dac87363ef6b5b65ef5be679d38174a36fdcb Mon Sep 17 00:00:00 2001 From: adamnsandle Date: Tue, 9 Jul 2024 09:31:18 +0000 Subject: [PATCH] add pyproject.toml --- pyproject.toml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4f22995 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,35 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" +[project] +name = "silero-vad" +version = "5.0.1b2" +authors = [ + {name="Silero Team", email="hello@silero.ai"}, +] +description = "Voice Activity Detector (VAD) by Silero" +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Intended Audience :: Science/Research", + "Intended Audience :: Developers", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Scientific/Engineering", +] +dependencies = [ + "torch>=1.12.0", + "torchaudio>=0.12.0", + "onnxruntime>=1.18.0", +] + +[project.urls] +Homepage = "https://github.com/snakers4/silero-vad" +Issues = "https://github.com/snakers4/silero-vad/issues" \ No newline at end of file