2018-09-02 21:48:12 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# This file is part of the pycalver project
|
2018-11-04 21:34:53 +01:00
|
|
|
# https://gitlab.com/mbarkhau/pycalver
|
2018-09-02 21:48:12 +02:00
|
|
|
#
|
2019-02-14 23:19:18 +01:00
|
|
|
# Copyright (c) 2019 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
|
2018-09-02 21:48:12 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2018-11-06 21:45:33 +01:00
|
|
|
"""
|
2019-03-28 23:22:15 +01:00
|
|
|
__main__ module for PyCalVer.
|
2018-11-06 21:45:33 +01:00
|
|
|
|
2019-03-28 23:22:15 +01:00
|
|
|
Enables use as module: $ python -m pycalver --version
|
2018-11-06 21:45:33 +01:00
|
|
|
"""
|
2018-09-02 21:48:12 +02:00
|
|
|
|
2019-02-22 22:44:23 +01:00
|
|
|
if __name__ == '__main__':
|
2019-03-28 23:22:15 +01:00
|
|
|
from . import cli
|
|
|
|
|
|
|
|
|
|
cli.cli()
|