-
Notifications
You must be signed in to change notification settings - Fork 11
/
requirements-conda.txt
68 lines (65 loc) · 2.87 KB
/
requirements-conda.txt
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
# --------------------( LICENSE )--------------------
# Copyright 2014-2025 by Alexis Pietak & Cecil Curry.
# See "LICENSE" for further details.
#
# --------------------( SYNOPSIS )--------------------
# List of all mandatory or optional runtime dependencies of this application
# installed by the "conda" package manager bundled with both the default
# Anaconda distribution and minimal Miniconda distribution.
#
# This file conforms to the "conda" rather than "setuptools" or "pip" file
# format for listing dependencies. The existing dependencies listed by the
# top-level "setup.py" script *CANNOT* be reused here by merely specifying ".".
#
# --------------------( USAGE )--------------------
# This file is principally intended for use in continuous integration (CI)
# pipelines exercising our test suite on each commit to this codebase.
# Prominent references to this file include:
#
# * "appveyor.yml", configuring Windows-specific AppVeyor CI pipelines.
# * ".gitlab-ci.yml", configuring Linux-specific GitLab Runner CI pipelines.
#
# --------------------( EXAMPLES )--------------------
# To generate a sample file in this format describing all currently installed
# "conda" packages, run the following command:
#
# $ conda list -e
# ....................{ DEPENDENCIES ~ run : mandatory }....................
# All mandatory and optional runtime dependencies of this application for which
# Anaconda packages are published by either the conda-forge channel (ideally)
# *OR* any of the official default channels.
#
# For simplicity, this list is a partial duplicate of the canonical
# conda-specific dependency list for this application specified by the
# YAML-formatted "requirements:/run:" list in the recipe at our official
# conda-forge feedstock: e.g.,
#
# https://github.com/leycec/betse-feedstock/blob/master/recipe/meta.yaml
#
# Ideally, these two lists should be manually synchronized as much as feasible.
# This list should be revised where necessary to reflect changes between the
# live and most recent stable versions of this application.
setuptools >=3.3
dill >=0.2.3
matplotlib >=1.5.0
numpy >=1.13.0
pillow >=2.3.0
ruamel.yaml >=0.15.24
scipy >=0.12.0
six >=1.5.2
# ....................{ DEPENDENCIES ~ run : optional }....................
# All optional runtime dependencies of this application for which Anaconda
# packages are published by either the conda-forge channel (ideally) *OR* any
# of the official default channels.
#
# This list intentionally omits the following dependencies:
#
# * The optional "pyside2" dependency, which applies *ONLY* to interactive
# environments.
graphviz >=2.38.0
networkx >=2.0
pydot >=1.0.28
ffmpeg
# ....................{ DEPENDENCIES ~ test : mandatory }....................
# All mandatory testing dependencies of this application.
pytest >=3.1.0