-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
79 lines (74 loc) · 2.51 KB
/
setup.cfg
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[metadata]
name = raygun
version = attr: raygun.__version__
author = Jeff Rhoades
author_email = [email protected]
url = https://github.com/htem/raygun
description = Library for testing and implementing image denoising, enhancement, and segmentation techniques on large, volumetric datasets. Built with Gunpowder, Daisy, PyTorch, and eventually JAX (hopefully).
long_description = file: README.md
long_description_content_type = text/markdown
keywords = vision, imaging, enhancement, GAN, neuroscience
license = AGPL-3.0
classifiers =
Programming Language :: Python :: 3
[options]
packages = find:
package_dir=
=src
zip_safe = True
include_package_data = True
install_requires =
Cython
daisy @ git+https://github.com/funkelab/daisy
funlib.learn.torch @ git+https://github.com/funkelab/funlib.learn.torch
funlib.math @ git+https://github.com/funkelab/funlib.math
funlib.persistence @ git+https://github.com/funkelab/funlib.persistence
funlib.geometry @ git+https://github.com/funkelab/funlib.geometry
funlib.show.neuroglancer @ git+https://github.com/funkelab/funlib.show.neuroglancer
funlib.evaluate @ git+https://github.com/funkelab/funlib.evaluate
gunpowder @ git+https://github.com/rhoadesScholar/gunpowder@raygun
lsds @ git+https://github.com/funkelab/lsd
waterz @ git+https://github.com/funkey/waterz
matplotlib
neuroglancer
numpy
Pillow
scikit-image
scipy
tensorboard
tensorboardX
torch
torchvision
tqdm
zarr
jsmin
ipykernel
jupyter
ipywidgets
webknossos
pytest
seaborn
logging
[options.packages.find]
where=src
; [options.extras_require]
; notebook = jupyter>=1.0.0, matplotlib
; dev =
; black==22.1.0
; flake8==4.0.1
[options.package_data]
example = *.json
* = README.md
[options.entry_points]
console_scripts =
raygun-train = raygun.train:train
raygun-train-batch = raygun.train:batch_train
raygun-train-cluster = raygun.train:cluster_train
raygun-inspect = raygun.evaluation.inspect_logs:inspect_logs
raygun-predict = raygun.predict:predict
raygun-segment = raygun.segment:segment
raygun-copy-template = raygun.copy_template:copy_template
raygun-run-validation = raygun.evaluation.validate_affinities:run_validation
raygun-validate-affinities = raygun.evaluation.validate_affinities:validate_affinities
raygun-validate-segmentation = raygun.evaluation.validate_affinities:validate_segmentation
raygun-images-compare = raygun.evaluation.image_compare:images_compare