forked from DigitalSlideArchive/HistomicsTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
101 lines (88 loc) · 2.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import os
import sys
from setuptools import find_packages
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip install scikit-build')
sys.exit(1)
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('LICENSE') as f:
license_str = f.read()
def prerelease_local_scheme(version):
"""
Return local scheme version unless building on master in CircleCI.
This function returns the local scheme version number
(e.g. 0.0.0.dev<N>+g<HASH>) unless building on CircleCI for a
pre-release in which case it ignores the hash and produces a
PEP440 compliant pre-release version number (e.g. 0.0.0.dev<N>).
"""
from setuptools_scm.version import get_local_node_and_date
if os.getenv('CIRCLE_BRANCH') in ('master', 'wheel-ci'):
return ''
else:
return get_local_node_and_date(version)
setup(
name='histomicstk',
use_scm_version={'local_scheme': prerelease_local_scheme},
description='A Python toolkit for Histopathology Image Analysis',
long_description=readme,
author='Kitware, Inc.',
author_email='developers@digitalslidearchive.net',
url='https://github.com/DigitalSlideArchive/HistomicsTK',
packages=find_packages(include=['histomicstk*']),
package_dir={
'histomicstk': 'histomicstk',
},
include_package_data=True,
setup_requires=[
'setuptools-scm',
'Cython>=0.25.2',
'scikit-build>=0.8.1',
'cmake>=0.6.0',
],
install_requires=[
'ctk-cli>=1.5',
# scientific packages
'nimfa>=1.3.2',
'numpy>=1.12.1',
'scipy>=0.19.0',
'pandas>=0.19.2',
'scikit-image>=0.14.2',
'scikit-learn>=0.18.1' + ('' if sys.version_info >= (3, ) else ',<0.21'),
# deep learning packages
'h5py>=2.7.1',
'keras>=2.0.8',
'tensorflow>=1.11',
# dask packages
'dask>=1.1.0',
'distributed>=1.21.6',
'tornado',
# large image sources
'large-image-source-tiff',
'large-image-source-openslide',
'large-image-source-pil',
],
license=license_str,
keywords='histomicstk',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)