File size: 1,405 Bytes
a9b52e3 074b1c4 c823053 074b1c4 a9b52e3 074b1c4 a9b52e3 44a4a1b 074b1c4 44a4a1b a9b52e3 50c57e9 a9b52e3 074b1c4 a9b52e3 074b1c4 a9b52e3 074b1c4 |
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 |
[build-system]
requires = [
"hatchling",
"hatch-requirements-txt",
"hatch-fancy-pypi-readme>=22.5.0",
]
build-backend = "hatchling.build"
[project]
name = "pyannote_viewer"
version = "1.0.2"
description = "Gradio custom component to visualize pyannote's pipelines outputs"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Clément Pagés", email = "[email protected]" }]
keywords = [
"gradio-custom-component",
"gradio-template-Audio",
"pyannote-audio",
"speech-separation",
"speaker-diarization",
"source-separation",
"speech",
"speaker",
"voice-activity-detection",
"pixit",
"totatonet",
]
# Add dependencies here
dependencies = ["gradio>=4.0,<5.0"]
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
]
[project.optional-dependencies]
dev = ["build", "twine"]
[tool.hatch.build]
artifacts = ["/backend/pyannoteviewer/templates", "*.pyi",]
[tool.hatch.build.targets.wheel]
packages = ["/backend/pyannote_viewer"]
|