-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 866 Bytes
/
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
[tool.poetry]
name = "language-transfer-flashcards"
version = "0.1.3"
description = "CLI tool converting Language Transfer lessons into Anki flashcards, automating content extraction for efficient language learning."
authors = ["Tendai <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/t-charura/language-transfer-flashcards"
packages = [
{ include = "ltf", from = "." }
]
[tool.poetry.dependencies]
python = "^3.11"
pydantic-settings = "^2.3.4"
langchain-community = "^0.2.9"
youtube-transcript-api = "^0.6.2"
pytube = "^15.0.0"
langchain-openai = "^0.1.17"
typer = "^0.12.3"
rich = "^13.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.1"
black = "^24.4.2"
flake8 = "^7.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ltf = "ltf.cli:app"