From c26277820936937f828b6187f016ef8d83fd3eb3 Mon Sep 17 00:00:00 2001 From: bharnden Date: Tue, 4 Jun 2019 21:49:44 -0700 Subject: [PATCH] just use setuptools in setup.py --- daemon/setup.py.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/daemon/setup.py.in b/daemon/setup.py.in index cfbbb82f..60a128e7 100644 --- a/daemon/setup.py.in +++ b/daemon/setup.py.in @@ -5,8 +5,7 @@ Defines how CORE will be built for installation. import glob import os -from setuptools import find_packages -from distutils.core import setup +from setuptools import find_packages, setup _CORE_DIR = "/etc/core" _MAN_DIR = "share/man/man1"