forked from openslide/openslide-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (48 loc) · 1.67 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import os
from setuptools import setup, Extension, Feature
# Load version string
_verfile = os.path.join(os.path.dirname(__file__), 'openslide', '_version.py')
with open(_verfile) as _fh:
exec(_fh.read())
setup(
name='openslide-python',
version=__version__,
packages=[
'openslide',
],
features={
'performance': Feature(
'performance-enhancing extension module',
standard=True,
ext_modules=[
Extension('openslide._convert', ['openslide/_convert.c']),
],
),
},
maintainer='OpenSlide project',
maintainer_email='[email protected]',
description='Python interface to OpenSlide',
long_description=open('README.rst').read(),
license='GNU Lesser General Public License, version 2.1',
keywords='openslide whole-slide image virtual slide library',
url='http://openslide.org/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=[
'Pillow',
],
zip_safe=True,
)