-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (28 loc) · 894 Bytes
/
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
from setuptools import setup
setup(
name='incasem',
version='0.1',
description='',
url='https://github.com/kirchhausenlab/incasem',
author='Benjamin Gallusser',
author_email='[email protected]',
license='MIT',
py_modules=[],
install_requires=[
'numpy<2',
'zarr',
'scikit-learn',
'pyyaml',
'quilt3',
'tensorboardX',
'tensorboard',
'configargparse',
'protobuf',
'daisy',
'sacred @ git+https://github.com/kirchhausenlab/sacred@master',
'funlib.learn.torch @ git+https://github.com/funkelab/funlib.learn.torch@master',
'funlib.persistence @ git+https://github.com/funkelab/funlib.persistence@main',
'gunpowder @ git+https://github.com/bentaculum/gunpowder@total_roi_with_nonspatial_array',
],
python_requires='>=3.9, <3.10',
)