File: drop_distutils

package info (click to toggle)
jellyfish 2.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,276 kB
  • sloc: cpp: 35,703; sh: 995; ruby: 578; makefile: 397; python: 165; perl: 36
file content (14 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
From: Michael R. Crusoe <crusoe@debian.org>
Subject: Convert another usage of distutils to setuptools
Forwarded: https://github.com/gmarcais/Jellyfish/pull/203
--- jellyfish.orig/swig/python/setup.py
+++ jellyfish/swig/python/setup.py
@@ -9,7 +9,7 @@
 import os
 import sys
 import re
-from distutils.core import setup, Extension
+from setuptools import setup, Extension
 
 def pkgconfig(s):
     pipe = os.popen("pkg-config {}".format(s))