-
Notifications
You must be signed in to change notification settings - Fork 8
/
environment.devenv.yml
36 lines (29 loc) · 1.12 KB
/
environment.devenv.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
name: thermofun
{% set python_version = os.environ.get("PY_VER", "3.9") %}
channels:
- conda-forge
dependencies:
- pip
- gxx_linux-64 # [linux]
- cmake
- ninja
- clcache # [win]
- ccache # [unix]
- clangxx_osx-64 # [osx]
- pybind11
- nlohmann_json
- chemicalfun
- python={{ python_version }}
- pytest
- vs2019_win-64 # [win]
environment:
PYTHONPATH:
- {{ root }}/artifacts/python/lib/python{{ python_version }}/site-packages # [unix]
- {{ root }}/build/lib/python{{ python_version }}/site-packages # [unix]
- {{ root }}/build/lib64/python{{ python_version }}/site-packages # [unix]
- {{ root }}\artifacts\python\Lib\site-packages # [win]
- {{ root }}\build\lib\python{{ python_version }}\site-packages # [win]
LD_LIBRARY_PATH: # [unix]
- {{ root }}/artifacts/lib # [unix]
PATH: # [win]
- {{ root }}\artifacts\bin # [win]