mirror of
https://gitea.com/Lerking/XtendR.git
synced 2025-07-21 12:41:17 +02:00
14 lines
158 B
Makefile
14 lines
158 B
Makefile
dist:
|
|
python -m build
|
|
|
|
test:
|
|
twine upload --repository testpypi dist/*
|
|
|
|
publish:
|
|
twine upload --repository pypi dist/*
|
|
|
|
all:
|
|
$(dist)
|
|
$(test)
|
|
$(publish)
|