File tree Expand file tree Collapse file tree 4 files changed +23
-27
lines changed Expand file tree Collapse file tree 4 files changed +23
-27
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ $ pip install python-markdown-math
20
20
21
21
### Install locally
22
22
23
- Use ` setup.py build ` and ` setup.py install ` to build and install this
24
- extension, respectively.
23
+ Use ` pip install . ` to install this extension from a local Git checkout.
25
24
26
25
The extension name is ` mdx_math ` , so you need to add that name to your
27
26
list of Python-Markdown extensions.
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [" setuptools>=30.3" , " wheel" ]
2
+ requires = [" setuptools>=77.0" ]
3
+ build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ name = " python-markdown-math"
7
+ version = " 0.8"
8
+ description = " Math extension for Python-Markdown"
9
+ readme = { file = " README.md" , content-type = " text/markdown" }
10
+ authors = [{
name =
" Dmitry Shachnev" ,
email =
" [email protected] " }]
11
+ license = " BSD-3-Clause"
12
+ requires-python = " >=3.9"
13
+ dependencies = [" Markdown>=3.0" ]
14
+
15
+ [project .entry-points ."markdown .extensions" ]
16
+ mdx_math = " mdx_math:MathExtension"
17
+
18
+ [project .urls ]
19
+ Homepage = " https://github.com/mitya57/python-markdown-math"
20
+
21
+ [tool .setuptools ]
22
+ py-modules = [" mdx_math" ]
23
+ include-package-data = false
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments