From 1faff1bd896fb5a3ee97d457946f7d2e64dc68a2 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Fri, 27 Jun 2008 08:59:03 +0200 Subject: [PATCH] Switch from distutils to setuptools Setuptools has some nice features (unittest targets and other), so it makes sense to use it. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b2e0583..5409660 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -import distutils, os -from distutils.core import setup, Extension +import os +from setuptools import setup, Extension (u_sysname, u_nodename, u_release, u_version, u_machine) = os.uname() -- 2.39.2