Add windows-curses for win optional dependencies.

Add linting dev dependencies.
Add pytorch index for cu118 torch.
Add scripts in pyproject.toml.
Add moviepy from https://github.com/OsaAjani/moviepy.git.
Add tiktok-uploader from https://github.com/Paillat-dev/tiktok-uploader.git.
Add TTS==0.22.0. Add Google-Images-Search from https://github.com/Paillat-dev/Google-Images-Search.
Add yt-dlp[default]>=2023.11.16.
This commit is contained in:
2024-04-19 08:49:47 +02:00
parent 9a2b4236fa
commit 88fbea433e
2 changed files with 2095 additions and 128 deletions

View File

@@ -10,7 +10,6 @@ dependencies = [
"google-api-python-client==2.48.0",
"google-auth-oauthlib==1.2.0",
"gradio==4.19.2",
"numpy==1.25.2",
"openai==1.13.3",
"orjson==3.9.15",
"python-dotenv==1.0.1",
@@ -18,13 +17,51 @@ dependencies = [
"Requests==2.31.0",
"SQLAlchemy==2.0.28",
"torch==2.2.0",
"typer<0.10.0", # not directly required but resolution takes ages without this
"whisper-timestamped==1.14.4",
"moviepy @ git+https://github.com/OsaAjani/moviepy.git",
"tiktok-uploader @ git+https://github.com/Paillat-dev/tiktok-uploader.git",
"TTS==0.22.0",
"Google-Images-Search @ git+https://github.com/Paillat-dev/Google-Images-Search",
"yt-dlp[default]>=2023.11.16",
]
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "AGPL-3.0"}
[tool.pdm.resolution.overrides]
numpy = ">=1.25.0"
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
lint = [
"black"
]
[project.optional-dependencies]
win = [
"windows-curses==2.3.2"
]
[tool.pdm.resolution]
respect-source-order = true
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
exclude_packages = ["torch", "torchvision", "torchaudio"]
[[tool.pdm.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu118"
include_packages = ["torch", "torchvision", "torchaudio"]
exclude_packages = []
[tool.pdm.scripts]
start = "python main.py"
lint = "black ."