2024-04-17 15:56:05 +02:00
|
|
|
[project]
|
|
|
|
|
name = "ViralFactory"
|
|
|
|
|
version = "0.0.0"
|
|
|
|
|
description = "Default template for PDM package"
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "Paillat", email = "me@paillat.dev"},
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
2024-04-19 08:22:20 +00:00
|
|
|
"anthropic==0.25.6",
|
2024-04-17 15:56:05 +02:00
|
|
|
"google-api-python-client==2.48.0",
|
|
|
|
|
"google-auth-oauthlib==1.2.0",
|
2024-04-19 09:46:16 +02:00
|
|
|
"gradio==4.26.0",
|
2024-05-02 19:06:53 +00:00
|
|
|
"openai==1.25.1",
|
2024-05-02 22:39:09 +00:00
|
|
|
"orjson==3.10.2",
|
2024-04-17 15:56:05 +02:00
|
|
|
"python-dotenv==1.0.1",
|
|
|
|
|
"PyYAML==6.0.1",
|
|
|
|
|
"Requests==2.31.0",
|
2024-04-19 07:52:40 +00:00
|
|
|
"SQLAlchemy==2.0.29",
|
2024-04-17 15:56:05 +02:00
|
|
|
"torch==2.2.0",
|
2024-04-19 08:49:47 +02:00
|
|
|
"typer<0.10.0", # not directly required but resolution takes ages without this
|
2024-04-17 15:56:05 +02:00
|
|
|
"whisper-timestamped==1.14.4",
|
2024-04-19 08:49:47 +02:00
|
|
|
"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",
|
2024-04-22 14:00:23 +02:00
|
|
|
"fix-busted-json==0.0.18",
|
2024-04-17 15:56:05 +02:00
|
|
|
]
|
2024-04-19 08:49:47 +02:00
|
|
|
|
2024-04-17 15:56:05 +02:00
|
|
|
requires-python = "==3.10.*"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = {text = "AGPL-3.0"}
|
|
|
|
|
|
|
|
|
|
|
2024-04-19 08:49:47 +02:00
|
|
|
[tool.pdm.resolution.overrides]
|
|
|
|
|
numpy = ">=1.25.0"
|
|
|
|
|
|
2024-04-17 15:56:05 +02:00
|
|
|
[tool.pdm]
|
|
|
|
|
distribution = false
|
2024-04-19 08:49:47 +02:00
|
|
|
|
|
|
|
|
[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 ."
|