Skip to content

Commit 8817e16

Browse files
committed
switch to cython
1 parent 540e35f commit 8817e16

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Setup.py renamed to setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
# :Author: Lele Gaifax <[email protected]>
66
# :Revision: $Revision: 1.3 $ by $Author: lele $
77
# :Date: $Date: 2004/07/19 23:04:35 $
8-
#
8+
#
99

1010
from distutils.core import setup
1111
from distutils.extension import Extension
12-
from Pyrex.Distutils import build_ext
12+
from Cython.Distutils import build_ext
13+
1314

1415
setup(
1516
name = 'python-pxlib',
@@ -18,8 +19,8 @@
1819
author = "Lele Gaifax",
1920
author_email = "[email protected]",
2021
url = "http://pxlib.sourceforge.net/",
21-
22-
ext_modules=[
22+
23+
ext_modules=[
2324
Extension("pxpy", ["pxpy.pyx"],
2425
# Uncomment, to use current version
2526
#include_dirs=["../../pxlib/include/"],

0 commit comments

Comments
 (0)