19 lines
469 B
Python
19 lines
469 B
Python
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'
|