-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 892 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 = "clipmind"
version = "0.1.0"
description = "AI-powered video analysis and management for content creators"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"sqlalchemy>=2.0.0",
"alembic>=1.14.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-multipart>=0.0.9",
"aiofiles>=24.1.0",
"httpx>=0.27.0",
"requests>=2.31.0",
"google-genai>=1.0.0",
"opencv-python>=4.5.0",
"scipy>=1.7.0",
"numpy>=1.20.0",
"librosa>=0.10.0",
"soundfile>=0.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"httpx>=0.27.0",
"ruff>=0.8.0",
]
[tool.setuptools.packages.find]
include = ["clipmind*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"