We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722455d commit d46fe93Copy full SHA for d46fe93
1 file changed
Makefile
@@ -8,7 +8,6 @@ ifndef target
8
@(which mh > /dev/null 2>&1 && echo -e "\nUse \`make help target=foo\` to learn more about foo.")
9
endif
10
11
-
12
.PHONY: build-sdist
13
build-sdist: ## Build source distribution
14
python3 -m build -s
@@ -20,8 +19,13 @@ build-wheel: ## Build wheel distribution (and source distribution)
20
19
.PHONY: build-clean
21
build-clean: ## Clean build artifacts
22
rm -rf dist
+ rm -rf log4mongo_python.egg-info/
23
+
24
+.PHONY: build-check
25
+build-check: ## Check build artifacts
26
+ twine check dist/*
27
28
.PHONY: build-pypi-publish
-build-pypi-publish: ## Publish to PyPI
29
+build-pypi-publish: build-check ## Publish to PyPI
30
python3 -m twine upload dist/*
31
0 commit comments