File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
/build
2
2
/dist
3
3
/MANIFEST
4
+ /* .egg-info
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ OpenSlide Python requires:
4
4
* OpenSlide >= 3.4.0
5
5
* Python Imaging Library or Pillow
6
6
7
+ Installation requires setuptools.
8
+
7
9
To install:
8
10
9
11
python setup.py install
Original file line number Diff line number Diff line change 1
- from distutils .core import setup
2
1
import os
2
+ from setuptools import setup
3
3
4
4
# Load version string
5
5
_verfile = os .path .join (os .path .dirname (__file__ ), 'openslide' , '_version.py' )
18
18
license = 'GNU Lesser General Public License, version 2.1' ,
19
19
keywords = 'openslide whole-slide image library' ,
20
20
url = 'http://openslide.org/' ,
21
+ install_requires = [
22
+ 'Pillow' ,
23
+ ],
24
+ zip_safe = True ,
21
25
)
You can’t perform that action at this time.
0 commit comments