File size: 1,190 Bytes
eda316b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9c19b67
eda316b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "humeo"
version = "0.1.0"
description = "Automated podcast-to-shorts pipeline"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "yt-dlp>=2024.0",
    "fastapi>=0.115",
    "openai>=1.0",
    "google-genai>=1.0",
    "httpx>=0.28",
    "curl_cffi>=0.10,<0.15",
    "jinja2>=3.1",
    "numpy>=1.24",
    "Pillow>=10.0",
    "python-dotenv>=1.0",
    "replicate>=0.34.2",
    "tqdm>=4.60",
    "python-multipart>=0.0.9",
    "uvicorn[standard]>=0.30",
    "humeo-core",
]

[project.optional-dependencies]
dev = [
    "pytest-asyncio>=0.23",
    "ruff",
    "pytest",
]
whisper = [
    "whisperx @ git+https://github.com/m-bain/whisperX.git",
]

[tool.uv.sources]
humeo-core = { path = "humeo-core", editable = true }

[project.scripts]
humeo = "humeo.cli:main"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
humeo = ["prompts/*.jinja2"]

[tool.pytest.ini_options]
testpaths = ["tests", "humeo-core/tests"]
addopts = "-ra -q"

[tool.ruff]
line-length = 100
target-version = "py310"