Added example c extension.

This commit is contained in:
Stephen Diehl
2012-05-27 21:22:16 -04:00
parent 077fb168ce
commit b574195a0d
2 changed files with 13 additions and 9 deletions
+10 -9
View File
@@ -1,18 +1,19 @@
#date related
# Date Related
pytz==2011n
python-dateutil==1.5
#core scientific python
numpy==1.6.1
scipy==0.10.0
# Core scientific python
numpy>=1.6.1
pandas>=0.7.0rc1
#scipy>=0.10.0
matplotlib==1.1.0
#http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.0/matplotlib-1.1.0.tar.gz
numexpr==2.0.1
Cython==0.15.1
tables==2.3.1
scikits.statsmodels==0.3.1
pandas==0.7.0rc1
#tables>=2.3.1
#scikits.statsmodels>=0.3.1
#zeromq related
# ZeroMQ
pyzmq==2.1.11
+3
View File
@@ -0,0 +1,3 @@
from libc.stdio cimport printf
printf("Hello World!")