cython-devel
changeset 1193:a6aa667bab81
[Cython] PATCH: fix pyximport installation as a package
| author | "Lisandro Dalcin" <dalcinl@gmail.com> |
|---|---|
| date | Fri Oct 03 01:35:11 2008 -0700 (3 years ago) |
| parents | c9f3badef047 |
| children | b8802e1bebf3264ea8cb3ef4 |
| files | setup.py |
line diff
1.1 --- a/setup.py Wed Oct 01 11:24:30 2008 -0700
1.2 +++ b/setup.py Fri Oct 03 01:35:11 2008 -0700
1.3 @@ -100,7 +100,9 @@
1.4 ],
1.5
1.6 # pyximport
1.7 - py_modules = ["pyximport/pyximport", "pyximport/pyxbuild"],
1.8 + py_modules = ["pyximport/__init__",
1.9 + "pyximport/pyximport",
1.10 + "pyximport/pyxbuild"],
1.11
1.12 **setup_args
1.13 )
