forked from haranrk/DigiPathAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (46 loc) · 1.39 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
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='DigiPathAI',
version='0.1.5',
author="Avinash Kori, Haran Rajkumar",
author_email="[email protected], [email protected]",
description="Deep Learning toolbox for WSI (digital histopatology) analysis",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/haranrk/DigiPathAI",
packages=setuptools.find_packages(),
# package_data={'': ['LICENSE', '*/static/*','*/templates/*' ]},
install_requires = [
'flask',
'openslide-python',
],
extras_require={
'gpu': [
'torch',
'torchvision',
'opencv-python',
'imgaug',
'tqdm',
'matplotlib',
'scikit-learn',
'scikit-image',
'tensorflow-gpu>=1.14,<2',
'pydensecrf',
'tifffile',
'pandas',
'wget'],
},
entry_points={
'console_scripts':['digipathai=DigiPathAI.main_server:main']
},
classifiers=[
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
zip_safe=False,
)