Diff of /setup.py [000000] .. [5bd30d]

Switch to unified view

a b/setup.py
1
import os
2
import setuptools
3
4
with open("README.md", "r") as fh:
5
    long_description = fh.read()
6
setuptools.setup(
7
     name='DigiPathAI',  
8
     version='0.1.5',
9
     author="Avinash Kori, Haran Rajkumar",
10
     author_email="koriavinash1@gmail.com, haranrajkumar97@gmail.com",
11
     description="Deep Learning toolbox for WSI (digital histopatology) analysis",
12
     long_description=open("README.md").read(),
13
     long_description_content_type="text/markdown",
14
     url="https://github.com/haranrk/DigiPathAI",
15
     packages=setuptools.find_packages(),
16
     # package_data={'': ['LICENSE', '*/static/*','*/templates/*' ]},
17
     install_requires = [
18
         'flask==2.2.5',
19
         'openslide-python',
20
         ],
21
     extras_require={
22
        'gpu': [
23
             'torch',
24
             'torchvision',
25
             'opencv-python',
26
             'imgaug',
27
             'tqdm',
28
             'matplotlib',
29
             'scikit-learn',
30
             'scikit-image',
31
             'tensorflow-gpu>=1.14,<2',
32
             'pydensecrf',
33
         'tifffile',
34
             'pandas',
35
             'wget'],
36
     },
37
     entry_points={
38
         'console_scripts':['digipathai=DigiPathAI.main_server:main']
39
     },
40
     classifiers=[
41
         "Programming Language :: Python :: 3.5",
42
         "License :: OSI Approved :: MIT License",
43
         "Operating System :: OS Independent",
44
     ],
45
     include_package_data=True,
46
     zip_safe=False,
47
 )