Index: tifffile-20111112/setup.py
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ tifffile-20111112/setup.py	2011-11-16 09:59:20.000000000 +0100
@@ -0,0 +1,22 @@
+"""A Python script to build the _tifffile extension module.
+
+Usage:: ``python setup.py build_ext --inplace``
+
+"""
+
+from distutils.core import setup, Extension
+import numpy
+
+setup(name='_tifffile',
+    version="2012.04.21",
+    description="Read image and meta-data from TIFF, STK, LSM, OME-TIFF, and FluoView files",
+    keywords="tiff,stk,lsm",
+    author="Christoph Gohlke",
+    url="http://www.lfd.uci.edu/~gohlke/",
+    license="BSD",
+    ext_modules=[
+      Extension(
+        '_tifffile', ['tifffile.c'],
+        include_dirs=[numpy.get_include()],
+        extra_compile_args=[])],
+)
