forked from morganjwilliams/pyrolite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
60 lines (54 loc) · 1.33 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.7
# pandas and scientific python
- numpy
- numpydoc
- pandas>=1.0 # dataframe acccessors, attrs attribute
- xlrd
- openpyxl
- psutil
- matplotlib # note that 3.4+ is incompatible with mpltern <0.3.3
- pytables
- scipy>=1.2 # uses scipy.optimize.Bounds, added around 1.2
- umap-learn
- tinydb
- periodictable
- mpltern>=0.3.1
- mpmath
- sympy>=1.7 # import changes after sympy 1.6
- joblib
- requests
# Tools
- jupyter
- jupyterlab
- jupyterlab-spellchecker
- jupyterlab_code_formatter
- ipykernel
- pip
- black
- jedi<0.18.0 # for use on atom/ipython
- pip:
- pyzmq
- pytest
- pytest-runner
- pytest-cov
- coverage
- codecov
- sphinx_rtd_theme
- sphinx-autodoc-annotation
- sphinx_gallery>=0.6.0
- recommonmark
- versioneer
- twine
- -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