summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2023-03-22 11:42:59 -0400
committerGitHub <noreply@github.com>2023-03-22 11:42:59 -0400
commitb81bf17ef4928039bebd43c4d5426c6ba87e1076 (patch)
treeb74246120b5caeeccaf67fcab2d92115ae5139fa /makefile
parent4a7b9352d677ae89d4dc89c243148dafac130957 (diff)
downloadpython-markdown-b81bf17ef4928039bebd43c4d5426c6ba87e1076.tar.gz
Switch from setup.py to pyproject.toml (#1324)
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/makefile b/makefile
index 2fbe695..ec97db9 100644
--- a/makefile
+++ b/makefile
@@ -8,7 +8,6 @@ help:
@echo ' install Install Python-Markdown locally'
@echo ' deploy Register and upload a new release to PyPI'
@echo ' build Build a source distribution'
- @echo ' build-win Build a Windows exe distribution'
@echo ' docs Build documentation'
@echo ' test Run all tests'
@echo ' clean Clean up the source directories'
@@ -21,18 +20,14 @@ install:
deploy:
rm -rf build
rm -rf dist
- python setup.py bdist_wheel sdist --formats gztar
+ python -m build
twine upload dist/*
.PHONY : build
build:
rm -rf build
rm -rf dist
- python setup.py bdist_wheel sdist --formats gztar
-
-.PHONY : build-win
-build-win:
- python setup.py bdist_wininst
+ python -m build
.PHONY : docs
docs: