diff options
| author | Waylan Limberg <waylan.limberg@icloud.com> | 2023-03-22 11:42:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-22 11:42:59 -0400 |
| commit | b81bf17ef4928039bebd43c4d5426c6ba87e1076 (patch) | |
| tree | b74246120b5caeeccaf67fcab2d92115ae5139fa /makefile | |
| parent | 4a7b9352d677ae89d4dc89c243148dafac130957 (diff) | |
| download | python-markdown-b81bf17ef4928039bebd43c4d5426c6ba87e1076.tar.gz | |
Switch from setup.py to pyproject.toml (#1324)
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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: |
