Commit 0e29934f authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 20181128

parent 06ca50a1
Loading
Loading
Loading
Loading

LICENSE

0 → 100644
+30 −0
Original line number Diff line number Diff line
Copyright (c) 2008-2018, Christoph Gohlke
Copyright (c) 2008-2018, The Regents of the University of California
Produced at the Laboratory for Fluorescence Dynamics
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
  this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

* Neither the name of the copyright holder nor the names of its
  contributors may be used to endorse or promote products derived from
  this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

MANIFEST.in

0 → 100644
+12 −0
Original line number Diff line number Diff line
include LICENSE
include README.rst

include tiffile.py
include setup_tiffile.py
include tests/*.py

recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude * *-
recursive-exclude test/data *
recursive-exclude test/_tmp *

PKG-INFO

0 → 100644
+517 −0

File added.

Preview size limit exceeded, changes collapsed.

README.rst

0 → 100644
+493 −0

File added.

Preview size limit exceeded, changes collapsed.

getorig.sh

deleted100755 → 0
+0 −24
Original line number Diff line number Diff line
#!/bin/sh

VERSIONOLD=`grep "^:Version" tifffile.py`
#wget -c http://www.lfd.uci.edu/~gohlke/code/tifffile.py.html
curl -s -o tifffile.py.html http://www.lfd.uci.edu/~gohlke/code/tifffile.py.html
#wget -c http://www.lfd.uci.edu/~gohlke/code/tifffile.c.html
curl -s -o tifffile.c.html http://www.lfd.uci.edu/~gohlke/code/tifffile.c.html
links -dump tifffile.py.html > tifffile.py
sed -i -e 's/^ //g' tifffile.py
links -dump tifffile.c.html > tifffile.c
sed -i -e 's/^ //g' tifffile.c
rm *.html
VERSION=`grep "^:Version" tifffile.py`
echo $VERSIONOLD
echo $VERSION
TAG=`echo $VERSION | cut -d' ' -f2`
if [ "$VERSION" != "$VERSIONOLD" ]; then
  echo "Different"
  echo "TAG: $TAG"
  git commit -a -m"$VERSION"
  git tag $TAG
  git push --all
  git push --tags
fi
Loading