-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 954 Bytes
/
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
import os
from setuptools import setup
__version__ = "0.0.1-alpha"
long_description = ""
if os.path.isfile("README.md"):
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='mtdp',
version=__version__,
description='Implementation of multi-task trained networks, including models pre-trained on digital pathology data',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['mtdp', 'mtdp.models'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
install_requires=['torch', 'torchvision', 'numpy'],
license='LICENSE'
)