https://github.com/Radiomics/pyradiomics
Raw File
Tip revision: e719901d316c2341a6f42cc621e5b2ce95e47022 authored by Joost van Griethuysen on 13 June 2022, 10:01:13 UTC
ENH: implement distribution to test pypi
Tip revision: e719901
.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