From fb852e17d46873a310cb944175775527b0b529a7 Mon Sep 17 00:00:00 2001 From: simon-ritchie Date: Sat, 13 Feb 2021 18:46:33 +0900 Subject: [PATCH] #23 Adjust build command and description. --- README.md | 1 + build.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index ef54821..ddb4a4f 100644 --- a/README.md +++ b/README.md @@ -703,6 +703,7 @@ $ flake8 ./ The following library are used for PyPI uploading. - twine==1.13.0 +- wheel==0.36.2 Build command: diff --git a/build.py b/build.py index dd74360..0606b6f 100644 --- a/build.py +++ b/build.py @@ -13,5 +13,7 @@ if os.path.exists('./numdoclint.egg-info'): shutil.rmtree('./numdoclint.egg-info', ignore_errors=True) + print('running sdist command...') os.system('python setup.py sdist') + print('running bdist_wheel command...') os.system('python setup.py bdist_wheel')