-
Notifications
You must be signed in to change notification settings - Fork 37
/
environment.yml
60 lines (54 loc) · 1.27 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
name: pyrolite
channels:
- conda-forge # get things from conda-forge first
- defaults
dependencies:
- python=3.11
# pandas and scientific python
- numpy
- numpydoc
- pandas>=1.0 # dataframe acccessors, attrs attribute
- xlrd
- openpyxl
- psutil
- matplotlib
- pytables
- scipy>=1.2 # uses scipy.optimize.Bounds, added around 1.2
- umap-learn
- tinydb
- periodictable
- mpltern>=0.4.0
- sympy>=1.7 # import changes after sympy 1.6
- joblib
- requests
# Tools
- jupyter
- jupyterlab
- jupyterlab-spellchecker
- jupyterlab_code_formatter
- ipykernel
# - jupyterlite-sphinx
# - jupyterlite-pyodide-kernel
- pip
- black
- isort
- pytest
- pytest-runner
- pytest-cov
- coverage
- codecov
- sphinx_rtd_theme
- recommonmark
- versioneer
- twine
- pip:
- sphinx-autodoc-annotation
- sphinx-gallery>=0.6.0
- -e . # install the local pyrolite package
# conda env create -f environment.yml
# python -m ipykernel install --user --name pyrolite
# conda activate pyrolite
# conda deactivate pyrolite
# conda env remove -n pyrolite
# jupyter kernelspec uninstall pyrolite
# make sure to launch Jupyter, atom etc from the command line after activating