File: setup.py

package info (click to toggle)
tifffile 20120421-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 200 kB
  • sloc: python: 2,041; ansic: 754; sh: 29; makefile: 17
file content (22 lines) | stat: -rw-r--r-- 590 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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=[])],
)