30 lines
606 B
TOML
30 lines
606 B
TOML
[project]
|
|
name = "anki-generator"
|
|
version = "0.1.0"
|
|
description = "Anki deck generator for German language learning"
|
|
authors = [
|
|
{ name = "Galuh", email = "mail@velouria.dev" }
|
|
]
|
|
dependencies = [
|
|
"genanki>=0.13.1",
|
|
"python-dotenv>=1.0.1",
|
|
"requests>=2.31.0",
|
|
"Pillow>=10.2.0",
|
|
"pydantic>=2.6.1",
|
|
"pydantic-settings>=2.1.0",
|
|
"anthropic>=0.18.1",
|
|
]
|
|
requires-python = ">=3.9"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"black>=23.3.0",
|
|
"isort>=5.12.0",
|
|
"ruff>=0.1.14",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|