sh_cpl/src/cpl_cli/configuration/build_settings_name_enum.py

16 lines
382 B
Python

from enum import Enum
class BuildSettingsNameEnum(Enum):
project_type = 'ProjectType'
source_path = 'SourcePath'
output_path = 'OutputPath'
main = 'Main'
entry_point = 'EntryPoint'
include_package_data = 'IncludePackageData'
included = 'Included'
excluded = 'Excluded'
package_data = 'PackageData'
project_references = 'ProjectReferences'