From 95ed1201556fa0392cb5f1bc72d4e23fd23cf0c3 Mon Sep 17 00:00:00 2001 From: idziubenko Date: Fri, 2 Jul 2021 14:17:14 +0300 Subject: [PATCH] deleted crutch libs and cleared setup --- setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/setup.py b/setup.py index bc46d77..6acb612 100755 --- a/setup.py +++ b/setup.py @@ -24,8 +24,6 @@ import sys import distutils from distutils.core import setup from distutils.command.install_data import install_data -from distutils.command.install import install -from distutils.dir_util import copy_tree import itertools icon_system_path = ['/usr/share/icons/Calculate/16x16/client-gui'] @@ -115,12 +113,6 @@ packages = [ if '__init__.py' in files ] -#TODO remove this once actual libs are ported -# class my_install(install): -# def run(self): -# install.run(self) -# copy_tree("./libs_crutch", f"{self.install_lib}calculate") - setup( name = __app__, version = __version__, @@ -133,5 +125,5 @@ setup( package_dir = {'calculate.consolegui': "pym/consolegui"}, packages = packages, scripts = (glob('bin/*')), - cmdclass={'install_data': install_data, "install" : my_install} + cmdclass={'install_data': install_data} ) \ No newline at end of file