forked from thermohub/thermofun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.devenv.yml
36 lines (30 loc) · 1.15 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.7") %}
dependencies:
- setuptools=59.7.0
- pip
- gxx_linux-64=9.4.0 # [linux]
- cmake>=3.13
- ninja
- ccache # [unix]
- pybind11
- nlohmann_json
- spdlog=1.10.0
- chemicalfun=0.1.4
- python={{ python_version }}
- pytest
- pip:
- mkdocs
- mkdocs-material
- mkdocs-macros-plugin
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]