File: setup.py

package info (click to toggle)
tifffile 20140824-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 280 kB
  • ctags: 289
  • sloc: python: 3,465; ansic: 756; sh: 29; makefile: 17
file content (23 lines) | stat: -rw-r--r-- 667 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""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="2013.11.03",
    description="Reads image and meta-data from many bio-scientific formats such as plain TIFF, BigTIFF, OME-TIFF, STK, LSM, NIH, ImageJ, GEL, and FluoView files",
    keywords="tiff,stk,lsm",
    author="Christoph Gohlke",
    url="http://www.lfd.uci.edu/~gohlke/",
    license="BSD",
    py_modules=['tifffile'],
    ext_modules=[
      Extension(
        '_tifffile', ['tifffile.c'],
        include_dirs=[numpy.get_include()]
        )],
)