forked from MRC-Harwell/cytometer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py.outdated
executable file
·30 lines (27 loc) · 1.47 KB
/
setup.py.outdated
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
#!/usr/bin/env python
# This Python file uses the following encoding: utf-8
# This file is part of Cytometer
# Copyright 2021 Medical Research Council
# SPDX-License-Identifier: Apache-2.0
# Author: Ramon Casero <[email protected]>
from setuptools import setup
from setuptools import find_packages
setup(name='cytometer',
version='1.0.0',
description='Cell segmentation and quantification',
author='Ramón Casero',
author_email='[email protected]',
url='http://phobos.mrch.har.mrc.ac.uk/r.casero/cytometer/',
license='Apache 2.0',
packages=find_packages(),
data_files=[('data', ['data/*'])],
python_requires='>=3.6',
install_requires=['keras==2.2.5',
'tensorflow-gpu==1.15.0', 'cudnn==7.6.5=cuda10.2_0', 'h5py==3.1.0', 'graphviz==2.40.1',
'cython==0.29.21', 'pydot==1.4.1', 'matplotlib==3.3.4', 'pillow==7.2.0', 'scikit-image==0.15.0',
'scikit-learn==0.23.1', 'nose==1.3.7', 'pytest==5.4.3', 'setuptools==45',
'opencv-python==4.1.0.25', 'pysto==1.4.1', 'openslide-python==1.1.1', 'seaborn==0.10.0',
'statannot==0.2.3', 'tifffile==2019.5.30', 'mahotas==1.4.5', 'networkx==2.4',
'svgpathtools==1.3.3', 'receptivefield==0.4.0', 'rpy2==3.0.5', 'mlxtend==0.17.0', 'ujson==1.35',
'pandas==1.0.5', 'shapely==1.7.0', 'six==1.12.0', 'statsmodels==0.11.1', 'rasterio==1.1.8']
)