forked from thermohub/chemicalfun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.devenv.yml
30 lines (24 loc) · 998 Bytes
/
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
name: chemicalfun
dependencies:
- pip
- gxx_linux-64>=9.4.0 # [linux]
- cmake>=3.13
- ninja
- ccache # [unix]
- pybind11
- eigen=3.4.0
- nlohmann_json
- spdlog
- python>=3.7
- pytest
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]