From 09d1e5cbf6c82f51f01d09418a1cf5c4dc995279 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 17 Mar 2023 02:28:35 +0300 Subject: [PATCH] Update setup.py --- src/setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/setup.py b/src/setup.py index a3f955e..ae023b7 100644 --- a/src/setup.py +++ b/src/setup.py @@ -59,10 +59,14 @@ class UploadCommand(Command): os.system("twine upload dist/* --verbose") logging.info("🤖 Uploaded . . .") + logging.info("Clean dist . . .") + shutil.rmtree("dist/") - logging.info("Clean builds . . .") - shutil.rmtree("./dist/") + logging.info("Clean build . . .") + shutil.rmtree("build/") + logging.info("Clean python3_anticaptcha.egg-info . . .") + shutil.rmtree("python3_anticaptcha.egg-info/") sys.exit() @@ -81,6 +85,8 @@ setup( project_urls={ "Documentation": URL, "Source": "https://github.com/AndreiDrang/python3-anticaptcha", + "Changelog": "https://github.com/AndreiDrang/python3-anticaptcha/releases", + "Issue tracker": "https://github.com/AndreiDrang/python3-anticaptcha/issues", }, author_email=EMAIL, license="MIT",