-
Notifications
You must be signed in to change notification settings - Fork 82
/
environment.yml
44 lines (43 loc) · 1.08 KB
/
environment.yml
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
# Use this file to construct an environment for working
# with the PyImageJ tutorial notebooks in the doc folder.
#
# First, install miniforge3:
#
# https://github.com/conda-forge/miniforge#miniforge3
#
# Then run:
#
# mamba env create
# mamba activate pyimagej
#
# It includes the dependencies needed for using PyImageJ, and for
# executing the Jupyter notebooks in the documentation, but not tools
# for developer-related actions like running automated tests (pytest),
# linting the code (black), and generating the API documentation (sphinx).
# If you want an environment including these tools, use dev-environment.yml.
name: pyimagej
channels:
- conda-forge
dependencies:
- python >= 3.8
# Project dependencies
- imglyb >= 2.1.0
- jgo >= 1.0.3
- jpype1 >= 1.3.0
- labeling >= 0.1.14
- numpy
- openjdk=11
- scyjava >= 1.8.0
- xarray
# Optional dependencies
- matplotlib-base
# Notebook dependencies
- ipywidgets
- jupyter_contrib_nbextensions
- notebook < 7.0.0
- pooch # for scikit image
- scikit-image
# Project from source
- pip
- pip:
- -e .