forked from scijava/scyjava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
30 lines (29 loc) · 737 Bytes
/
environment.yml
File metadata and controls
30 lines (29 loc) · 737 Bytes
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
# Use this file to construct an environment for
# working with scyjava in a runtime setting.
#
# First, install mambaforge:
#
# https://github.com/conda-forge/miniforge#mambaforge
#
# Then run:
#
# mamba env create
# mamba activate scyjava
#
# It includes the dependencies needed for using scyjava, 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: scyjava
channels:
- conda-forge
dependencies:
- python >= 3.9
# Project dependencies
- jpype1 >= 1.3.0
- jgo
- openjdk >= 8
# Project from source
- pip
- pip:
- -e .