-
Notifications
You must be signed in to change notification settings - Fork 17
/
environment_dev.yml
52 lines (46 loc) · 2.1 KB
/
environment_dev.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
name: hsp2_py311_dev
channels:
- conda-forge
- nodefaults # Speeds solving env, by limiting the number of options
dependencies:
# Python 3.11 is supported by Anaconda since 2023.03-0 (Mar 20, 2023)
# https://docs.anaconda.com/free/anaconda/release-notes/#anaconda-2023-03-0-mar-20-2023
# package management
- conda
- conda-build
- conda-libmamba-solver
- pip
# Running HSP2
- python =3.11
- scipy # Scipy also installs numpy
- pandas >=2.0 # Pandas installs most scientific Python modules, such as Numpy, etc.
- numba
- numpy
- hdf5
- pytables
- h5py
- hdf5plugin # HDF5 compression filters for h5py & jupyterlab_hdf
# - dask # for future performance enhancements
- mando # for Python CLI app in HSP2tools/HSP2_CLI.py; hasn't been updated since 2017 and doesn't support Python 3.9: https://github.com/rubik/mando
# Interactivity & Visualization via Jupyter Notebooks (optional, but required for tutorials)
- jupyterlab # also installs classic Jupyter notbook
- ipympl # jupyter-matplotlib, https://github.com/matplotlib/ipympl
- nodejs # required for many JupyterLab extensions
# HoloViz, https://holoviz.org
- hvplot # hvPlot installs most HoloViz libs, including matplotlib
- ipywidgets # Required for HoloViz interactivity in Jupyter notebooks
# Dev tools (optional)
- python-lsp-server # Language Server Protocol (LSP) extension for Python (pylsp)
# Rope for Completions and renaming
# Pyflakes linter to detect various errors
# McCabe linter for complexity checking
# pycodestyle linter for style checking
# pydocstyle linter for docstring style checking (disabled by default)
# autopep8 for code formatting
# YAPF for code formatting (preferred over autopep8)
# flake8 for error checking (disabled by default)
# pylint for code linting (disabled by default)
- jupyterlab-lsp # Provides both server extension and lab extension
# PIP install requirements only if it is not possible with conda
# https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#using-pip-in-an-environment
- pip: