From ef352bae56f8e0aa54130ff0a7bdcaa83652b8e4 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 20 Mar 2023 01:58:45 +0300 Subject: [PATCH] Update setup.py --- src/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup.py b/src/setup.py index b7d5e5a..56e85ba 100644 --- a/src/setup.py +++ b/src/setup.py @@ -53,7 +53,7 @@ class UploadCommand(Command): shutil.rmtree("./dist/", ignore_errors=True) logging.info("Building Source and Wheel distribution . . .") - os.system("python setup.py bdist_wheel") + os.system("python setup.py sdist bdist_wheel") logging.info("Uploading the package to PyPI via Twin . . .") os.system("twine upload dist/* --verbose")