-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 836 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 836 Bytes
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
[project]
name = "shorts-clipper"
version = "0.1.0"
description = "Open-source AI shorts clipping pipeline."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"faster-whisper>=1.0",
"google-genai>=1.0",
"yt-dlp>=2024.1.0",
"google-api-python-client>=2.0.0",
"google-auth-oauthlib>=1.0.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"anyio>=4.0",
"curl-cffi>=0.15.0",
"boto3>=1.34.0",
]
[project.scripts]
shorts-clipper = "shorts_clipper.__main__:main"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["shorts_clipper*"]