-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (33 loc) · 1.07 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
from setuptools import setup
from setuptools.command.install import install
import subprocess
import os
PACKAGES=['numpy',
'opencv-python',
'scikit-image',
'scipy',
'pandas',
'scikit-learn',
'SimpleITK',
'matplotlib',
'torch',
'airlab',
'fire',
'nibabel']
with open('README.md','r', encoding='utf-8') as f:
long_description = f.read()
setup(name='pathflow_mixmatch',
version='0.1',
description='Don\'t mix, match! Simple utilities for improved registration of Histopathology Whole Slide Images.',
url='https://github.com/jlevy44/PathFlow-MixMatch',
author='Joshua Levy',
author_email='[email protected]',
license='MIT',
scripts=[],
entry_points={
'console_scripts':['pathflow-mixmatch=pathflow_mixmatch.cli:main']
},
long_description=long_description,
long_description_content_type='text/markdown',
packages=['pathflow_mixmatch'],
install_requires=PACKAGES)