summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2023-03-23 08:50:40 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2023-03-23 09:13:33 -0400
commitc0faf5258f7592a18672f8a6c8a5320d08098b2b (patch)
tree4f623882170d55487c61881876b7d8ba91e17cfd
parent6a85e4d4e28e105d4e772a6c2ab8188ddeba1644 (diff)
downloadpython-markdown-c0faf5258f7592a18672f8a6c8a5320d08098b2b.tar.gz
Restore console script.
Fixes #1327.
-rw-r--r--docs/change_log/index.md4
-rw-r--r--makefile2
-rw-r--r--pyproject.toml2
3 files changed, 6 insertions, 2 deletions
diff --git a/docs/change_log/index.md b/docs/change_log/index.md
index 17e301b..f6159d2 100644
--- a/docs/change_log/index.md
+++ b/docs/change_log/index.md
@@ -3,6 +3,10 @@ title: Change Log
Python-Markdown Change Log
=========================
+March 23, 2023: version 3.4.3 (a bug-fix release).
+
+* Restore console script (#1327).
+
March 22, 2023: version 3.4.2 (a bug-fix release).
* Improve standalone * and _ parsing (#1300).
diff --git a/makefile b/makefile
index ec97db9..b7ac0f3 100644
--- a/makefile
+++ b/makefile
@@ -14,7 +14,7 @@ help:
.PHONY : install
install:
- python setup.py install
+ pip install .
.PHONY : deploy
deploy:
diff --git a/pyproject.toml b/pyproject.toml
index 17b4751..1df6885 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -60,7 +60,7 @@ testing = [
'Issue Tracker' = 'https://github.com/Python-Markdown/markdown/issues'
'Changelog' = 'https://github.com/Python-Markdown/markdown/blob/master/docs/change_log/index.md'
-[project.entry-points.scripts]
+[project.scripts]
markdown_py = 'markdown.__main__:run'
[project.entry-points.'markdown.extensions']