forked from nest/nest-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
103 lines (95 loc) · 2.36 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Conda environment specification for NEST Simulator
#
# This file specifies a conda environment for those who would
# like to compile NEST or build NEST documentation themselves.
# If you just want to execute NEST, you should install NEST
# directly as described in https://www.nest-simulator.org/installation.
#
#
# The environment specification below is comprehensive: it includes
# all packages required to build and run NEST with OpenMP and MPI
# parallelisation, GSL-dependent models, NumPy and Pandas-dependent
# features of PyNEST and examples requiring Matplotlib, and to run
# the NEST testsuite. It also comprises all tools required to build
# NEST documentation and to run NEST Server. The requirements for the
# documentation and server are marked in separate sections below so
# you can remove them if you would like a leaner environment.
#
# NOTE: Do NOT delete the PIP section at the end of the file. Environment files
# allow just a single PIP section. All dependencies not satisfied by
# conda-forge are placed there.
#
# NOTE: libneurosim, MUSIC and SIONLib are not included in this environment.
#
# To create an environment from this file, run
#
# conda env create --name <my_env_name> --file environment.yml
#
# where <my_env_name> is a name of your choice.
channels:
- conda-forge
dependencies:
# Basics ------------------
- python >= 3.8
- pip
# Building NEST -----------
- cmake >= 3.12
- cython
- openmpi
- boost >= 1.69
- gsl >= 1.11
- libtool
- readline
# Testing NEST ------------
- pytest
- pytest-timeout
- pytest-xdist
- numpy
- pandas
- scipy
- mpi4py
- terminaltables
- pycodestyle
- cppcheck
# Working with NEST ------
- ipython
- matplotlib
- jupyter
- jupyterlab
# Building NEST documentation
- PyYAML>=4.2b1
- assimulo
- breathe
- csvkit
- docutils
- doxygen
- mock
- nbsphinx
- numpydoc
- path.py
- pydot
- recommonmark
- sphinx >= 4.0.2
- sphinx_rtd_theme
- tqdm
- yamllint
# Running NEST Server ----
- flask
- flask_cors
- gunicorn
- requests
- restrictedpython
- werkzeug
# PIP dependencies -- do not delete
- pip:
# For testsuite
- junitparser >= 2
- clang-format == 13.0
# For documentation
- example
- Image
- sphinx_autobuild
- sphinx_gallery
- sphinx-tabs
- sphinx_design
- sphinx-material