-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 901 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 901 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
from setuptools import setup, find_packages
setup(
name='incasem',
version='0.1',
description='',
url='https://github.com/kirchhausenlab/incasem',
author='Benjamin Gallusser',
author_email='gallusser@tklab.hms.harvard.edu',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'dask',
'dask[distributed]',
'zarr',
'scikit-learn',
'pyyaml',
'quilt3',
'mlpack',
'tensorboardX',
'tensorboard',
'configargparse',
'neuroglancer',
'h5py',
'protobuf',
'funlib.learn.torch @ git+https://github.com/kirchhausenlab/funlib.learn.torch@5590fb51aef8381eeae99bbe75800ecb186684a1',
'gunpowder @ git+https://github.com/bentaculum/gunpowder@total_roi_with_nonspatial_array',
],
python_requires='>=3.9',
)