Changed configuration to upper case

This commit is contained in:
2021-03-08 20:49:26 +01:00
parent f931ccb7dd
commit 1bbbb2d8e1
5 changed files with 61 additions and 58 deletions

View File

@@ -3,10 +3,10 @@ from enum import Enum
class BuildSettingsName(Enum):
sourcePath = 'sourcePath'
outputPath = 'outputPath'
main = 'main'
entry_point = 'entryPoint'
include_package_data = 'includePackageData'
included = 'included'
excluded = 'excluded'
sourcePath = 'SourcePath'
outputPath = 'OutputPath'
main = 'Main'
entry_point = 'EntryPoint'
include_package_data = 'IncludePackageData'
included = 'Included'
excluded = 'Excluded'

View File

@@ -3,16 +3,16 @@ from enum import Enum
class ProjectSettingsName(Enum):
name = 'name'
version = 'version'
author = 'author'
author_email = 'authorEmail'
description = 'description'
long_description = 'longDescription'
url = 'url'
copyright_date = 'copyrightDate'
copyright_name = 'copyrightName'
license_name = 'licenseName'
license_description = 'licenseDescription'
dependencies = 'dependencies'
python_version = 'pythonVersion'
name = 'Name'
version = 'Version'
author = 'Author'
author_email = 'AuthorEmail'
description = 'Description'
long_description = 'LongDescription'
url = 'URL'
copyright_date = 'CopyrightDate'
copyright_name = 'CopyrightName'
license_name = 'LicenseName'
license_description = 'LicenseDescription'
dependencies = 'Dependencies'
python_version = 'PythonVersion'

View File

@@ -3,6 +3,6 @@ from enum import Enum
class VersionSettingsName(Enum):
major = 'major'
minor = 'minor'
micro = 'micro'
major = 'Major'
minor = 'Minor'
micro = 'Micro'