From d3a4f00d7f593c2dbf5c173201711e51b0e8b336 Mon Sep 17 00:00:00 2001 From: Thomas Merkel Date: Fri, 30 May 2014 19:40:22 +0200 Subject: [PATCH] Use setuptools for installing the package. pip didn't work with distutils and reports some errors during installation. --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 28343cb..abd3356 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,8 @@ import shutil import subprocess import sys -from distutils.core import setup -from distutils.command.install import install - +from setuptools import setup +from setuptools.command.install import install ## manpage install code taken from https://github.com/novel/lc-tools def abspath(path):