-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
40 lines (39 loc) · 1.43 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
from setuptools import setup
setup(
name='PatchPerPix',
version='0.9',
description='Dense patch prediction per pixel for instance segmentation.',
url='',
author='Peter Hirsch, Lisa Mais, Dagmar Kainmueller',
author_email='firstname.lastname@mdc-berlin.de',
license='MIT',
install_requires=[
'colorcet',
'Cython',
'h5py',
'joblib',
'matplotlib',
'natsort',
'networkx',
'numcodecs',
'numpy',
'pycuda',
'scikit-image',
'scipy',
'tifffile',
'toml',
'tqdm',
'zarr',
'evaluate-instance-segmentation @ git+https://github.com/Kainmueller-Lab/evaluate-instance-segmentation.git@master#egg=evaluate-instance-segmentation',
'gunpowder @ git+https://github.com/Kainmueller-Lab/gunpowder.git@3f99f187af3f038dc1345b6728e3b9879b807081#egg=gunpowder',
'neurolight @ git+https://github.com/maisli/neurolight.git@master#egg=neurolight',
'funlib.learn.torch @ git+https://github.com/Kainmueller-Lab/funlib.learn.torch@ppp#egg=funlib.learn.torch',
],
packages=[
'PatchPerPix',
'PatchPerPix.vote_instances',
'PatchPerPix.visualize',
'PatchPerPix.evaluate',
'PatchPerPix.util',
]
)