forked from google/ffn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 868 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 868 Bytes
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
try:
from setuptools import setup
except ModuleNotFoundError:
from distutils.core import setup
setup(
name='ffn',
version='0.1.0',
author='Michal Januszewski',
author_email='mjanusz@google.com',
packages=[
'ffn', 'ffn.inference', 'ffn.training', 'ffn.utils', 'ffn.slurm'
],
scripts=[
'build_coordinates.py',
'compute_partitions.py',
'run_inference.py',
'train.py',
],
entry_points={
'console_scripts': ['ngvis=ffn.utils.ngvis:main'],
},
url='https://github.com/google/ffn',
license='LICENSE',
description='Flood-Filling Networks for volumetric instance segmentation',
long_description=open('README.md').read(),
install_requires=[
'scikit-image',
'scipy',
'numpy',
'h5py',
'pillow',
'absl-py',
],
)