-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
53 lines (46 loc) · 1.26 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "markdown-anki-decks"
version = "1.1.1"
description = "A command line program to convert markdown files into anki decks."
authors = ["Luke Murray <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lukesmurray/markdown-anki-decks"
repository = "https://github.com/lukesmurray/markdown-anki-decks"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Education"
]
exclude = ["textData/**/*"]
[tool.poetry.dependencies]
python = "^3.7.0"
genanki = "^0.13.0"
typer = "^0.4.0"
colorama = "^0.4.4"
shellingham = "^1.4.0"
beautifulsoup4 = "^4.10.0"
Markdown = "^3.3.6"
python-frontmatter = "^1.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
black = "^22.1.0"
flake8 = "^3.8.4"
commitizen = "^2.21.2"
pre-commit = "^2.17.0"
Pygments = "^2.11.2"
pygments-graphql = "^1.0.0"
mypy = "^0.941"
[tool.poetry.scripts]
mdankideck = "markdown_anki_decks.cli:main"
[tool.commitizen]
version = "1.1.1"
version_files = [
"pyproject.toml:version",
"markdown_anki_decks/__init__.py",
]
update_changelog_on_bump = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"