forked from CSBDeep/CSBDeep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (54 loc) · 1.88 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
from __future__ import absolute_import
from setuptools import setup, find_packages
from os import path
_dir = path.abspath(path.dirname(__file__))
with open(path.join(_dir,'csbdeep','version.py')) as f:
exec(f.read())
with open(path.join(_dir,'README.md')) as f:
long_description = f.read()
setup(name='csbdeep',
version=__version__,
description='CSBDeep - a toolbox for Content-aware Image Restoration (CARE)',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://csbdeep.bioimagecomputing.com/',
author='Uwe Schmidt, Martin Weigert',
author_email='[email protected], [email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
python_requires='>=3.6',
project_urls={
'Documentation': 'http://csbdeep.bioimagecomputing.com/doc/',
'Repository': 'https://github.com/csbdeep/csbdeep',
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
"numpy",
"scipy",
"matplotlib",
"six",
"h5py<3; python_version<'3.9'",
"h5py>=3; python_version>='3.9'",
"tifffile",
"tqdm",
],
extras_require={
"tf1": ["keras>=2.1.2,<2.4"],
"test": ["pytest"],
"docs": ["sphinx","sphinx-rtd-theme"],
},
entry_points={
'console_scripts': [
'care_predict = csbdeep.scripts.care_predict:main'
]
}
)