-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.57 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
[build-system]
requires = [
"setuptools>=47",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "verto"
description = "Verto is an extension of the Python Markdown package, which allows authors to include complex HTML elements with simple text tags in their Markdown."
readme = "README.rst"
requires-python=">=3.8"
keywords = [
"markdown",
"verto",
"development",
"textbook",
"converter",
"media",
"richtext",
"interactive",
"education",
"html",
"book",
"author",
"extension",
]
license = {file = "LICENSE.rst"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
]
dependencies = [
"markdown==2.6.11",
"Jinja2==3.1.3",
"python-slugify==8.0.4",
]
dynamic = ["version"]
[[project.authors]]
name = "University of Canterbury Computer Science Education Research Group"
email = "[email protected]"
[project.urls]
"Issue Tracker" = "https://github.com/uccser/verto/issues"
"Documentation" = "https://verto.readthedocs.io/en/latest/"
"Changelog" = "http://verto.readthedocs.io/en/latest/changelog.html"
"Source Code" = "https://github.com/uccser/verto"
[options]
find = {}
[tool.setuptools.dynamic]
version = {attr = "verto.__version__"}