1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
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=[])],
+)
|