Renamed projects

This commit is contained in:
2021-11-15 01:22:20 +01:00
parent c82e8e3065
commit eda1caf36a
9 changed files with 36 additions and 30 deletions

View File

@@ -1 +1,25 @@
# -*- coding: utf-8 -*-
"""
gismo sh-edraft Gismo
~~~~~~~~~~~~~~~~~~~
sh-edraft Dicord bot Gismo
:copyright: (c) 2021 - 2022 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'gismo'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'
__version__ = '0.1.0'
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='0', minor='1', micro='0')

View File

@@ -43,6 +43,11 @@
"*.json"
]
},
"ProjectReferences": []
"ProjectReferences": [
"../gismo_core/gismo-core.json",
"../gismo_db/gismo-db.json",
"../modules/*",
"../modules_core/modules-core.json"
]
}
}