-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 991 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
34
35
36
37
38
[tool.poetry]
name = "lingoanki"
version = "0.1.1"
description = "A script to create Anki flashcards from audio transcript to learn a foreign language."
authors = ["Your Name <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
genanki = ">=0.13.1"
inquirer = ">=3.1.1"
spacy = ">=3.6.1" # or latest stable version
openai-whisper = { git = "https://github.com/openai/whisper", rev = "main" }
deep_translator = {version=">=1.10.1", extras=['ai']} # version supporting ChatGptTranslator
gtts = ">=2.2.4"
pydub = ">=0.25.1"
numpy = ">=2.0.0"
[tool.poetry.scripts]
lingoAnki = "lingoanki.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
ipdb = "^0.13"
ipython = "^7.5.3"
coverage = "^7.5.3"
pre-commit = "^3.7.1"
poetry-pre-commit-plugin = "^0.1.2"
[tool.pre_commit]
version = "2.3.0"
config = ".pre-commit-config.yaml"