-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
65 lines (56 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools_scm]
version_scheme = "post-release"
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
[project]
name = "markdown2anki"
description = "A CLI tool and an apkg template to allow you to create flashcards from markdown and have a better experience while using anki for your studies. 🌸"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSES"}
keywords = ["anki", "flashcard", "markdown", "apkg", "cli"]
dynamic = ["version"]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#authors-maintainers
authors = [
{name = "Alex Biosa (mochitto)", email = "[email protected]"},
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Education",
"Typing :: Typed"
]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#dependencies-optional-dependencies
dependencies = [
"mistune==2.0.4",
"Pygments==2.13.0",
"type-config==1.3.0",
"requests==2.28.2",
"python-frontmatter==1.0.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"build == 1.0.3",
"setuptools_scm == 8.0.4"
]
# https://packaging.python.org/en/latest/specifications/core-metadata/#core-metadata-project-url
[project.urls]
documentation = "https://github.com/Mochitto/Markdown2Anki/blob/master/README.md"
repository = "https://github.com/Mochitto/Markdown2Anki"
changelog = "https://github.com/Mochitto/Markdown2Anki/blob/master/CHANGELOG.md"
# https://packaging.python.org/en/latest/specifications/entry-points/#entry-points
[project.scripts]
md2anki = "markdown2anki:main"