-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.3 KB
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
59
60
[project]
name = "innerbhakti-video-generation-automation"
version = "0.1.0"
description = "AI-powered video content production automation platform"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"elevenlabs>=2.18.0",
"fastapi[standard]>=0.119.0",
"pydantic>=2.12.0,<2.13.0",
"pydantic-ai>=1.0.17",
"pydantic-settings>=2.6.0,<2.11.0",
"pydub>=0.25.1",
"openai>=1.51.0",
"webrtcvad>=2.0.10",
"setuptools>=70.0.0",
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30.0",
"bcrypt>=4.2.0",
"python-jose[cryptography]>=3.3.0",
"email-validator>=2.2.0",
]
[dependency-groups]
dev = [
"ruff>=0.14.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
target-version = "py313"
include = ["src/**/*.py", "tests/**/*.py"]
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"PTH", # flake8-use-pathlib
]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["src"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"