-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.14 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.14 KB
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, find_packages
setup(
name="dacapo-ml",
description="Framework for easy composition of volumetric machine learning jobs.",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
version="0.1",
url="https://github.com/funkelab/dacapo",
author="Jan Funke, Will Patton",
author_email="funkej@janelia.hhmi.org, pattonw@janelia.hhmi.org",
license="MIT",
packages=find_packages(),
entry_points={"console_scripts": ["dacapo=dacapo.cli:cli"]},
include_package_data=True,
install_requires=[
"numpy",
"pyyaml",
"zarr",
"cattrs",
"pymongo",
"tqdm",
"simpleitk",
"lazy-property",
"neuroglancer",
"torch",
"fibsem_tools",
"attrs",
"bokeh",
"numpy-indexed>=0.3.7",
"daisy>=1.0",
"funlib.math>=0.1",
"funlib.geometry>=0.2",
"mwatershed>=0.1",
"funlib.persistence>=0.1",
"funlib.evaluate @ git+https://github.com/pattonw/funlib.evaluate",
"gunpowder>=1.3",
"lsds>=0.1.3",
],
)