File tree Expand file tree Collapse file tree 5 files changed +36
-2
lines changed Expand file tree Collapse file tree 5 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 44/* .egg-info
55/openslide /_convert * .so
66* .pyc
7+ Pipfile
Original file line number Diff line number Diff line change 1+ MAKE = make
2+ PYTHON = python
3+ SETUP = $(PYTHON ) ./setup.py
4+
5+ .PHONY : clean cleandocs coverage dist docs opendocs unit-coverage upload
6+
7+ help :
8+ @echo "Usage : \`make <target>' where <target> is one or more of"
9+ @echo " clean delete intermediate work product and start fresh"
10+ @echo " cleandocs delete cached HTML documentation and start fresh"
11+ @echo " coverage report overall test coverage"
12+ @echo " docs build HTML documentation using Sphinx (incremental)"
13+ @echo " opendocs open local HTML documentation in browser"
14+ @echo " dist generate source and wheel distribution into dist/"
15+ @echo " unit-coverage report unit test coverage"
16+ @echo " upload upload distribution to PyPI"
17+
18+ clean :
19+ find . -type f -name \* .pyc -exec rm {} \;
20+ find . -type f -name .DS_Store -exec rm {} \;
21+ rm -rf dist .coverage
22+
23+
24+ dist :
25+ rm -rf dist/
26+ $(SETUP ) sdist bdist_wheel
27+
28+ upload :
29+ rm -rf dist/
30+ $(SETUP ) sdist bdist_wheel
31+ twine upload dist/*
Original file line number Diff line number Diff line change 22OpenSlide Python
33================
44
5+ !!!THIS IS A TEMPORARY WORKAROUND TO HAVE openslide-python INSTALLABLE VIA PIP WITHOUT SETUPTOOLS ISSUE!!!
6+
57OpenSlide Python is a Python interface to the OpenSlide library.
68
79OpenSlide _ is a C library that provides a simple interface for reading
Original file line number Diff line number Diff line change 2222This module is an implementation detail. The package version should be
2323obtained from openslide.__version__."""
2424
25- __version__ = u'1.1.1 '
25+ __version__ = u'1.1.2 '
Original file line number Diff line number Diff line change 1010 _long_description = _fh .read ()
1111
1212setup (
13- name = 'openslide-python ' ,
13+ name = 'openslide-wrapper ' ,
1414 version = __version__ ,
1515 packages = [
1616 'openslide' ,
You can’t perform that action at this time.
0 commit comments