-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 2.35 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (60 loc) · 2.35 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
60
61
62
63
64
65
[build-system]
requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "scraibe-webui"
version = "0.0.0"
description = "A web interface for the ScAIbe speech-to-text transcription tool"
authors = ["Schmieder, Jacob <jacob.schmieder@dbfz.de>"]
license = "GPL-3.0-or-later"
readme = ["README.md", "LICENSE"]
repository = "https://github.com/JSchmie/ScrAIbe-WebUI"
keywords = ["gradio","webui","whisper", "pyannote", "speech-to-text", "speech-recognition"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.1',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Framework :: FastAPI',
]
packages = [{include = "scraibe_webui"}]
include = [{ path = "scraibe_webui/misc/*.yaml", format = ["sdist", "wheel"] },
{ path = "scraibe_webui/misc/*.html", format = ["sdist", "wheel"] },
{ path = "scraibe_webui/misc/*.css", format = ["sdist", "wheel"] },
{ path = "scraibe_webui/misc/*.svg", format = ["sdist", "wheel"] },
]
exclude =[
"scraibe_webui/__pycache__",
"scraibe_webui/**/__pycache__",
"scraibe_webui/**/*.pyc",
"test"
]
[tool.poetry.dependencies]
python = "^3.10"
gradio = "~5.5"
scraibe = "^0.3.0"
pandas = "^2.2.2"
tqdm = "^4.66.5"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
strict = true
format-jinja = """
{%- if distance == 0 -%}
{{ serialize_pep440(base) }}
{%- elif branch == 'develop' or branch == 'main' -%}
{{ serialize_pep440(bump_version(base), dev = distance) }}
{%- else -%}
{{ serialize_pep440(bump_version(base), dev=distance, metadata=[commit]) }}
{%- endif -%}
"""
[tool.poetry.scripts]
scraibe-webui = "scraibe_webui.cli:cli"
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = ["E402","F403",'F401']
"scraibe_webui/utils/_parsekwargs.py" = ["E722"]