killian31
commited on
Commit
·
db1584f
1
Parent(s):
8563658
use poetry as dependencies manager
Browse files- poetry.lock +0 -0
- pyproject.toml +20 -0
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "audiovisualtranscription"
|
3 |
+
version = "1.0.0"
|
4 |
+
description = "Get your synchronized subtitiled video in seconds!"
|
5 |
+
authors = ["killian31 <80256683+killian31@users.noreply.github.com>"]
|
6 |
+
license = "Apache 2.0"
|
7 |
+
readme = "README.md"
|
8 |
+
|
9 |
+
[tool.poetry.dependencies]
|
10 |
+
python = ">=3.10,<=3.11.9"
|
11 |
+
gradio = "5.1.0"
|
12 |
+
moviepy = "1.0.3"
|
13 |
+
torch = "2.2.2"
|
14 |
+
numpy = "1.23.5"
|
15 |
+
openai-whisper = "^20240930"
|
16 |
+
|
17 |
+
|
18 |
+
[build-system]
|
19 |
+
requires = ["poetry-core"]
|
20 |
+
build-backend = "poetry.core.masonry.api"
|