-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.08 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
41
42
43
44
45
46
47
48
49
[project]
name = "igneous-daskified"
version = "0.0.1"
requires-python = ">=3.10"
authors = [
{ name = "David Ackerman", email = "ackermand@janelia.hhmi.org" },
]
maintainers = [
{ name = "David Ackerman", email = "ackermand@janelia.hhmi.org" },
]
description = "Daskifying igneous skeletonization and mesh generation"
readme = "README.md"
license = { file = "LICENSE.txt" }
# Core runtime dependencies
dependencies = [
"bokeh",
"cloud-volume",
"cmake",
"dask",
"dask-jobqueue",
"dracopy",
"distributed",
"fast-simplification",
"funlib.geometry",
"funlib.persistence==0.3.0",
"neuroglancer",
"numba",
"numcodecs==0.13.0",
"pandas",
"pyarrow",
"pybind11-rdp",
"pymeshlab",
"pymeshfix",
"pyfqmr",
"scipy",
"shapely",
"trimesh==4.8.3",
"zarr==2.18.5",
"zmesh",
]
[project.scripts]
meshify = "igneous_daskified.process.cli:meshify"
skeletonize = "igneous_daskified.process.cli:skeletonize"
analyze-meshes = "igneous_daskified.process.cli:analyze_meshes"
cgal-skeletonize-mesh = "igneous_daskified.process.cli:cgal_skeletonize_mesh"