From a7b92caa4f3c0633150b25c2c6079cc315ef3adb Mon Sep 17 00:00:00 2001 From: "\"Lisandro Dalcin\"" Date: Fri, 3 Oct 2008 01:35:11 -0700 Subject: [PATCH] [Cython] PATCH: fix pyximport installation as a package --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b11bc472..d011f8aa 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,9 @@ setup( ], # pyximport - py_modules = ["pyximport/pyximport", "pyximport/pyxbuild"], + py_modules = ["pyximport/__init__", + "pyximport/pyximport", + "pyximport/pyxbuild"], **setup_args ) -- 2.26.2