From 68810541a58a8f4f69f3d2ced60387cde44ab50f Mon Sep 17 00:00:00 2001 From: Jannik Hoffjann Date: Fri, 5 Jul 2019 13:05:57 +0200 Subject: [PATCH] Renamed post install hook to something more fitting --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 43bc455d..a8f630a0 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ ] -class PostInstallCommand(install): +class InstallWithPostCommand(install): """Post-installation for installation mode.""" def run(self): @@ -73,5 +73,5 @@ def run(self): "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", ], - cmdclass={"install": PostInstallCommand}, + cmdclass={"install": InstallWithPostCommand}, )