20 changed files with 73 additions and 5 deletions
@ -0,0 +1,18 @@ |
|||||
|
# bsv - Backup, Synchronization, Versioning |
||||
|
# Copyright (C) 2023 Simon Boyé |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as published by |
||||
|
# the Free Software Foundation, either version 3 of the License, or |
||||
|
# (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. |
||||
|
from __future__ import annotations |
||||
|
|
||||
|
from bsv._version import __version__, __version_tuple__ |
||||
@ -0,0 +1,16 @@ |
|||||
|
# file generated by setuptools_scm |
||||
|
# don't change, don't track in version control |
||||
|
TYPE_CHECKING = False |
||||
|
if TYPE_CHECKING: |
||||
|
from typing import Tuple, Union |
||||
|
VERSION_TUPLE = Tuple[Union[int, str], ...] |
||||
|
else: |
||||
|
VERSION_TUPLE = object |
||||
|
|
||||
|
version: str |
||||
|
__version__: str |
||||
|
__version_tuple__: VERSION_TUPLE |
||||
|
version_tuple: VERSION_TUPLE |
||||
|
|
||||
|
__version__ = version = '0.0.1.dev8+g52a553d.d20231127' |
||||
|
__version_tuple__ = version_tuple = (0, 0, 1, 'dev8', 'g52a553d.d20231127') |
||||
Loading…
Reference in new issue