Renamed by internal conventions

This commit is contained in:
2021-03-12 16:06:30 +01:00
parent b3b65f3dd2
commit 2580d4b6cf
43 changed files with 202 additions and 202 deletions

View File

@@ -0,0 +1,18 @@
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'