[Input] Add ck2yaml script for converting Chemkin files to YAML
This commit is contained in:
parent
f0dc990764
commit
be4d9cbc55
3 changed files with 2053 additions and 0 deletions
|
|
@ -36,10 +36,12 @@ before_script: |
|
||||||
echo TRAVIS_OS_NAME: $TRAVIS_OS_NAME
|
echo TRAVIS_OS_NAME: $TRAVIS_OS_NAME
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
pip3 install numpy cython # Install numpy and Cython for Python 3
|
pip3 install numpy cython # Install numpy and Cython for Python 3
|
||||||
|
pip3 install ruamel.yaml
|
||||||
else
|
else
|
||||||
pip3 install --user --upgrade pip
|
pip3 install --user --upgrade pip
|
||||||
pip3 install --user --upgrade setuptools wheel
|
pip3 install --user --upgrade setuptools wheel
|
||||||
pip3 install --user cython
|
pip3 install --user cython
|
||||||
|
pip3 install --user ruamel.yaml==0.15.94 # Need a version compatible with Python 3.4
|
||||||
|
|
||||||
# Install packages for the documentation
|
# Install packages for the documentation
|
||||||
pip3 install --user sphinx sphinxcontrib-matlabdomain sphinxcontrib-doxylink
|
pip3 install --user sphinx sphinxcontrib-matlabdomain sphinxcontrib-doxylink
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ install:
|
||||||
C:\Python37-x64\Scripts\pip.exe install --no-cache-dir --no-warn-script-location numpy
|
C:\Python37-x64\Scripts\pip.exe install --no-cache-dir --no-warn-script-location numpy
|
||||||
C:\Python37-x64\Scripts\pip.exe install --no-warn-script-location cython
|
C:\Python37-x64\Scripts\pip.exe install --no-warn-script-location cython
|
||||||
C:\Python37-x64\Scripts\pip.exe install pypiwin32
|
C:\Python37-x64\Scripts\pip.exe install pypiwin32
|
||||||
|
C:\Python37-x64\Scripts\pip.exe install ruamel.yaml
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- cmd: C:\Python37-x64\Scripts\scons build -j2 boost_inc_dir=C:\Libraries\boost_1_62_0 debug=n VERBOSE=y python_package=full
|
- cmd: C:\Python37-x64\Scripts\scons build -j2 boost_inc_dir=C:\Libraries\boost_1_62_0 debug=n VERBOSE=y python_package=full
|
||||||
|
|
|
||||||
2050
interfaces/cython/cantera/ck2yaml.py
Normal file
2050
interfaces/cython/cantera/ck2yaml.py
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue