| changeset 1193: |
a6aa667bab81 |
| parent 1192: | c9f3badef047 |
| child 1194: | b8802e1bebf3 |
|---|
| child 1205: | 264ea8cb3ef4 |
| author: |
"Lisandro Dalcin" <dalcinl@gmail.com> |
| date: |
Fri Oct 03 01:35:11 2008 -0700 (3 months ago) |
| files: |
setup.py |
| description: |
[Cython] PATCH: fix pyximport installation as a package |
--- a/setup.py Wed Oct 01 11:24:30 2008 -0700
+++ b/setup.py Fri Oct 03 01:35:11 2008 -0700
@@ -100,7 +100,9 @@ setup(
],
# pyximport
- py_modules = ["pyximport/pyximport", "pyximport/pyxbuild"],
+ py_modules = ["pyximport/__init__",
+ "pyximport/pyximport",
+ "pyximport/pyxbuild"],
**setup_args
)