mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-13 23:03:54 +01:00
12 lines
254 B
Python
12 lines
254 B
Python
|
|
# This file is part of the pycalver project
|
||
|
|
# https://github.com/mbarkhau/pycalver
|
||
|
|
#
|
||
|
|
# (C) 2018 Manuel Barkhau (@mbarkhau)
|
||
|
|
# SPDX-License-Identifier: MIT
|
||
|
|
|
||
|
|
import os
|
||
|
|
|
||
|
|
__version__ = "v201809.0001-beta"
|
||
|
|
|
||
|
|
DEBUG = os.environ.get("PYCALVER_DEBUG", "0") == "1"
|