-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathenvironment.yml
51 lines (44 loc) · 1 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
name: autopew
channels:
- conda-forge # get things from conda-forge first
- defaults
dependencies:
- python=3.7
# pandas and scientific python
- numpy
- pandas>=1.0
- xlrd
- openpyxl
- psutil
- matplotlib
- pillow
- scipy
# Tools
- jupyter
- jupyterlab
- jupyterlab-spellchecker
- jupyterlab_code_formatter
- ipykernel
- pip
- black
- jedi<0.18.0 # for use on atom/ipython
- pip:
- pytest
- pytest-runner
- pytest-cov
- coverage
- codecov
- sphinx_rtd_theme
- sphinx-autodoc-annotation
- recommonmark
- versioneer
- twine
- -e . # install the local autopew package
# conda env create -f environment.yml
# python -m ipykernel install --user --name autopew
# conda activate autopew
# install autopew from here
# conda deactivate autopew
# conda env remove -n autopew
# jupyter kernelspec uninstall autopew
# make sure to launch Jupyter, atom etc from the command line after activating