From 4e8876309cc585065a726337c68d03560d9ea29a Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 10 Jun 2020 12:37:26 +0200 Subject: [PATCH] One last attempt to get shit to work --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 332afadd..25d2c5ed 100755 --- a/setup.py +++ b/setup.py @@ -5,9 +5,9 @@ import os import re from distutils.cmd import Command from distutils.command.build import build as _build -from distutils.command.install import install -from setuptools import setup, find_packages +from distutils.command.install import install as _install from setuptools.command.bdist_egg import bdist_egg as _bdist_egg +from setuptools import setup, find_packages class WebBuildCommand(Command): @@ -62,10 +62,10 @@ class WebBuildCommand(Command): self.generate_css_files() -class InstallCommand(install): +class install(_install): def do_egg_install(self): self.run_command('web_build') - install.do_egg_install(self) + _install.do_egg_install(self) class bdist_egg(_bdist_egg): @@ -137,7 +137,7 @@ setup( scripts=['bin/platyvenv'], cmdclass={ 'web_build': WebBuildCommand, - 'install': InstallCommand, + 'install': install, 'build': build, 'bdist_egg': bdist_egg, },