forked from cfsengineering/CEASIOMpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
89 lines (77 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# This file lists external packages required to run and develop CEASIOMpy.
#
# * Only top-level requirements are listed here.
# * You can use this file to set up a Conda environment:
#
# conda env create -f environment.yml
#
# See also: https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
name: ceasiompy
channels:
- dlr-sc # See: https://anaconda.org/DLR-SC/repo
- conda-forge
- defaults
# List all explicitly imported/used packages
# ------------------------------------------
#
# Example -- Consider a Python file with following imports:
#
# import package_A
# import package_B
#
# Assume:
#
# ==> 'package_A' depends on 'package_B'
# ==> 'package_B' depends on a third 'package_C'
#
# 'package_A' and 'package_B' should be listed in this file since they
# are explicitly imported, but we do not list 'package_C'.
dependencies:
- python>=3.6
# Required
- numpy>=1.15
- cpacscreator>=0.1
#- tigl3>=3.1.0 # Dependencies of cpacscreator
#- tixi3>=3.1 # Dependencies of cpacscreator
- matplotlib>=3.0.2
- scipy>=1.1
- scikit-learn>=0.21.3
- pandas>=0.25.0
- vtk>=8.2.0
- xmltodict>=0.12.0
- openmdao >=2.9.1
# Testing
- flake8
- pytest>=5.0.1
- pytest-cov
- codecov==2.0.15
# Documentation
- sphinx=3.0.3
# To compile PyTornado on Mac
- clang>=4.0.1
# Misc
- pip
- pip:
- sphinx-rtd-theme==0.4.3
- aeroframe # See: https://github.com/airinnova/aeroframe
- framat # See: https://github.com/airinnova/framat
- smt
# - mpi4py # issue at installation of environment
# Other packages
# ==============
#
# PyTornado (automated installation from PyPi or Conda is not yet available)
# https://github.com/airinnova/pytornado
# - pytornado>=0.5.0
#
# ------------------------------
#
# SU2
# https://github.com/su2code/SU2
#
# ------------------------------
#
# RCE
# https://rcenvironment.de/
#
# ------------------------------