diff options
author | Qrius <[email protected]> | 2025-04-23 14:25:05 +0200 |
---|---|---|
committer | Qrius <[email protected]> | 2025-04-23 14:25:08 +0200 |
commit | 45f9f608d39289131548a0e1d7962617cf3c028e (patch) | |
tree | e3d359223e3b11ac810e618fe34e7ecfe1f8990e /Makefile | |
parent | 16b4248e7d307e3e32f73892332087a239b195ac (diff) | |
download | skaldpress-45f9f608d39289131548a0e1d7962617cf3c028e.tar.gz skaldpress-45f9f608d39289131548a0e1d7962617cf3c028e.zip |
Prepare deb packaging, switch markdown dependency
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 8394bbf..0000000 --- a/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -.PHONY: test build minorbump publish install clean - -venv/bin/tt: src/timetracker/*.py venv - . venv/bin/activate && \ - python -m pip install -e .[dev] - -venv: pyproject.toml - python3 -m venv venv - -build: venv - . venv/bin/activate && \ - python -m pip install build twine && \ - python -m build && \ - python -m twine check dist/* - -minorbump: - . venv/bin/activate && \ - bumpver update --patch - -publish: minorbump build - . venv/bin/activate && \ - twine upload dist/* - -install: venv - python -m pip install . - -clean: - rm -rf venv - rm -rf dist - -test: - . venv/bin/activate && \ - black --check src && \ - mypy src/ && \ - pyflakes src/ && \ - ./tests/test_macro_processor.sh && \ - ./tests/test_skaldpress.sh && \ - ./tests/test_unittests.sh - - |