https://github.com/Radiomics/pyradiomics
Revision 0b99b20ac13d65c92e840b850b5304e6a990d111 authored by Steve Pieper on 21 April 2017, 13:03:31 UTC, committed by GitHub on 21 April 2017, 13:03:31 UTC
Set up developer mode so cmatrices shared library is accessible.

Addresses [issue #244](https://github.com/Radiomics/pyradiomics/issues/244)
1 parent 0dd46a7
Raw File
Tip revision: 0b99b20ac13d65c92e840b850b5304e6a990d111 authored by Steve Pieper on 21 April 2017, 13:03:31 UTC
Add extra install step
Tip revision: 0b99b20
.editorconfig
# EditorConfig: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[**]
end_of_line = lf
insert_final_newline = true

# Set default charset
[**.py]
indent_style = space
indent_size = 2
charset = utf-8

# Set indentation for C
[**.{c,h}]
indent_style = space
indent_size = 2

# Tab indentation (no size specified)
[**CMakeLists.txt]
indent_style = space
indent_size = 2
back to top