-
Notifications
You must be signed in to change notification settings - Fork 82
/
dev-environment.yml
55 lines (54 loc) · 1.27 KB
/
dev-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
45
46
47
48
49
50
51
52
53
54
55
# Use this file to construct an environment
# for developing PyImageJ from source.
#
# First, install miniforge3:
#
# https://github.com/conda-forge/miniforge#miniforge3
#
# Then run:
#
# mamba env create -f dev-environment.yml
# mamba activate pyimagej-dev
#
# In addition to the dependencies needed for using PyImageJ, and for
# executing the Jupyter notebooks in the documentation, it includes 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 without these tools, use environment.yml.
name: pyimagej-dev
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
# Developer tools
- myst-nb
- pre-commit
- python-build
- pytest
- pytest-cov
- ruff
- sphinx
- sphinx_rtd_theme
- pip
- pip:
- readthedocs-sphinx-search
- validate-pyproject[all]
# Project from source
- -e .