forked from manoharan-lab/structural-color
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenvironment.yml
More file actions
45 lines (40 loc) · 726 Bytes
/
environment.yml
File metadata and controls
45 lines (40 loc) · 726 Bytes
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
# dependencies for structural color package
#
# To use:
# conda env create -f .\environment.yml
# and then
# conda activate structcol
#
# To update dependencies after changing this environment file:
# conda env update --name structcol --file environment.yml --prune
#
# can also use mamba instead of conda in the above
name: structcol
channels:
- conda-forge
- defaults
dependencies:
- python>=3.11
- numpy
- scipy
- pandas
- pint
- ipython
- matplotlib
- seaborn
# include jupyterlab for convenience
- jupyterlab
# for running tests
- pytest
# for development
- pyright
- pylint
- flake8
- autoflake
- epc
- isort
- yapf
- debugpy
- pip
- pip:
- importmagic