-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.42 KB
/
pyproject.toml
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
[tool.poetry]
name = "ask_youtube_playlists"
version = "0.1.0"
description = "A Question-Answering application for Youtube videos and playlists"
authors = ["Pabloo22 <[email protected]>",
"Beatpc <[email protected]>",
"alvarola17 <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "ask_youtube_playlists" }
]
[tool.poetry.dependencies]
python = ">= 3.8.1, !=3.9.7, < 3.11"
torch = "^1.12.1"
transformers = "^4.28.1"
numpy = "^1.24.3"
python-dotenv = "^1.0.0"
sentence-transformers = "^2.2.2"
pytube = "^15.0.0"
youtube-transcript-api = "^0.6.0"
langchain = "^0.0.197"
chromadb = "^0.3.25, <0.3.26"
streamlit = "^1.23.1"
openai = "^0.27.8"
tiktoken = "^0.4.0"
pyyaml = "^6.0"
types-pyyaml = "^6.0.12.10"
validators = "^0.20.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
mypy = "^1.2.0"
flake8 = "^3.8.2"
pytest-cov = "^4.0.0"
pylint = "^2.17.4"
sphinx-rtd-theme = "^1.2.2"
sphinx-hoverxref = "^1.3.0"
sphinx-last-updated-by-git = "^0.3.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["ask_youtube_playlists", "tests", "web_app"]
check_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
# "ignore::UserWarning",
]