Setting tag pyplnet-7.0-0
[pyplnet.git] / setup.py
index 4a9d1f3..24f939c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,15 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 #
 # Setup script for pyplnet
 #
 # Daniel Hokka Zakrisson <daniel@hozac.com>
 # Copyright (C) 2008 The Trustees of Princeton University
 #
-# $Id$
-#
+
+# pylint: disable=c0111, c0103
 
 import os
-from distutils.core import setup, Extension
+from distutils.core import setup
 from distutils.cmd import Command
 from distutils.command.sdist import sdist
 
@@ -39,19 +39,17 @@ class bdist_rpmspec(Command):
         if self.rpmdef is not None:
             command.extend(["--define", self.rpmdef])
         command.append(sdist.get_archive_files()[0])
-        print "running '%s'" % "' '".join(command)
+        print("running '%s'" % "' '".join(command))
         if not self.dry_run:
             os.spawnvp(os.P_WAIT, "rpmbuild", command)
 
 setup(
     name='pyplnet',
     version='4.3',
-    ext_modules=[
-    Extension('sioc', ['sioc.c']),
-    ],
     py_modules=[
-    'plnet',
-    'modprobe',
+        'plnet',
+        'modprobe',
+        'sioc',
     ],
     cmdclass={'sdist': my_sdist, 'bdist_rpmspec': bdist_rpmspec},
-    )
+)