sh_cpl/src/cpl_cli/configuration/build_settings_name.py

13 lines
265 B
Python
Raw Normal View History

2021-03-08 20:29:08 +01:00
from enum import Enum
class BuildSettingsName(Enum):
sourcePath = 'sourcePath'
outputPath = 'outputPath'
main = 'main'
entry_point = 'entryPoint'
include_package_data = 'includePackageData'
included = 'included'
excluded = 'excluded'