Skip to content

Commit e97f179

Browse files
authored
use build instead of setuptools to create the dist, build wheel (#88)
1 parent f9cc8b1 commit e97f179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test: ## Run unit/integration tests
2020

2121
publish: ## Publish the library to the central PyPi repository
2222
# build and upload archive
23-
($(VENV_RUN) && pip install setuptools twine && ./setup.py sdist && twine upload dist/*)
23+
($(VENV_RUN) && pip install build twine && python3 -m build && twine upload dist/*)
2424

2525
clean: ## Clean up
2626
rm -rf $(VENV_DIR)

0 commit comments

Comments
 (0)