bumpver/src/pycalver/__main__.py

17 lines
372 B
Python
Raw Normal View History

2018-09-02 21:48:12 +02:00
#!/usr/bin/env python
# This file is part of the pycalver project
2020-09-06 20:20:36 +00:00
# https://github.com/mbarkhau/pycalver
2018-09-02 21:48:12 +02:00
#
2020-09-06 20:20:36 +00:00
# Copyright (c) 2018-2020 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()