Initial commit

This commit is contained in:
John Doty 2024-05-04 14:31:52 -07:00
commit da116357b3
4 changed files with 1191 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[tool.poetry]
name = "decks"
version = "0.1.0"
description = "Make some study decks for anki"
authors = ["John Doty <john@d0ty.me>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
genanki = "^0.13.1"
espeakng = "^1.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"