Skip to content

Commit

Permalink
Merge pull request #5 from yetanotherion/to_setuptools
Browse files Browse the repository at this point in the history
Switch to setuptools
  • Loading branch information
david-cortes committed Feb 15, 2019
2 parents f251401 + b7626a7 commit 4af1bef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from distutils.core import setup
from distutils.extension import Extension
try:
from setuptools import setup
from setuptools.extension import Extension
except:
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
from Cython.Distutils import build_ext
import numpy
Expand Down

0 comments on commit 4af1bef

Please sign in to comment.