-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (40 loc) · 1.18 KB
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
[tool.poetry]
name = "anki_deck_from_text"
version = "1.3.6"
description = "Generate an Anki deck from annotations on a text file"
authors = ["Andre Macedo <andre.lopes.macedo@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/AndreMacedo88/anki_deck_from_text"
keywords = ["anki", "flashcards", "deck", "language-learning"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Topic :: Education",
]
[tool.poetry.dependencies]
python = "^3.12"
genanki = "^0.13.1"
click = "^8.1.7"
chardet = "^5.2.0"
[tool.poetry.group.dev.dependencies]
nox = "^2023.4.22"
nox-poetry = "^1.0.3"
autopep8 = "^2.0.4"
pytest = "^7.4.3"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6"
mkdocs-material = "^9.5"
mkdocstrings = {extras = ["python"], version = "^0.27"}
[tool.poetry.urls]
Documentation = "https://andremacedo88.github.io/anki_deck_from_text/"
[tool.poetry.scripts]
anki_deck_from_text = "anki_deck_from_text.cli:cli"
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"