Skip to content

Commit fcbb358

Browse files
committedJun 19, 2017
prefer setuptools over distutils when building python module
thanks @ stephengroat (upstream PR boundary#6)
1 parent e8c10eb commit fcbb358

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎python/setup.py.in

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#!/usr/bin/env python
22

33
import glob, os, sys
4-
from distutils.core import setup, Extension
4+
try:
5+
from setuptools import setup, Extension
6+
except ImportError:
7+
from distutils.core import setup, Extension
58

69
dnet_srcs = [ '@srcdir@/dnet.c' ]
710
dnet_incdirs = [ '@top_srcdir@/include' ]

0 commit comments

Comments
 (0)
Please sign in to comment.