-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (43 loc) · 1.32 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wagtail-katex"
description = "Math typesetting for Wagtail CMS powered by KaTeX"
authors = [
{name = "ongchi", email = "[email protected]"},
]
dependencies = [
"wagtail>=3",
]
requires-python = ">=3.6"
license = {text = "MIT"}
readme = "README.md"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Wagtail",
"Framework :: Wagtail :: 3",
"Framework :: Wagtail :: 4",
"Framework :: Wagtail :: 5",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/ongchi/wagtail-katex"
"Bug Tracker" = "https://github.com/ongchi/wagtail-katex/issues"
[tool.setuptools]
packages = ["wagtailkatex"]
[tool.setuptools.dynamic]
version = {attr = "wagtailkatex.__version__"}
[tool.black]
skip_string_normalization = true