-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 893 Bytes
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 893 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
43
44
45
46
47
48
49
[tool.poetry]
name = "youtube-chat"
version = "0.1.0"
description = "An AI assistant for learning languages through YouTube videos"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
openai = "^1.12.0"
gradio = "^4.19.2"
python-dotenv = "^1.0.1"
youtube-transcript-api = "^1.0.3"
openai-agents = "^0.0.11"
agentops = "^0.4.10"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
black = "^24.2.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.10"
install_types = true
warn_unused_configs = true
warn_return_any = true
ignore_missing_imports = true
disallow_untyped_defs = true
ignore_errors = false
files = [
"youtube_chat"
]
[tool.black]
line-length = 88
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''