-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
32 lines (28 loc) · 1000 Bytes
/
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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-markdown-math"
version = "0.9"
description = "Math extension for Python-Markdown"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Dmitry Shachnev", email = "[email protected]" }]
license = "BSD-3-Clause"
requires-python = ">=3.9"
dependencies = ["Markdown>=3.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: Markdown",
]
[project.entry-points."markdown.extensions"]
mdx_math = "mdx_math:MathExtension"
[project.urls]
Homepage = "https://github.com/mitya57/python-markdown-math"
[tool.setuptools]
py-modules = ["mdx_math"]
include-package-data = false