sh_cpl/tools/set_pip_urls/__init__.py

27 lines
588 B
Python
Raw Normal View History

2022-05-25 19:38:38 +02:00
# -*- coding: utf-8 -*-
"""
set-pip-urls CPL internal tool to set pip URL for CLI by environment
~~~~~~~~~~~~~~~~~~~
CPL internal tool to set pip URL for CLI by environment
2022-05-25 19:59:38 +02:00
:copyright: (c) 2022 sh-edraft.de
2022-05-25 19:38:38 +02:00
:license: MIT, see LICENSE for more details.
"""
__title__ = 'set-pip-urls'
2022-05-25 19:38:38 +02:00
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
2022-05-25 19:59:38 +02:00
__copyright__ = 'Copyright (c) 2022 sh-edraft.de'
2022-05-25 19:38:38 +02:00
__version__ = '2022.6.0'
from collections import namedtuple
2022-07-10 18:08:44 +02:00
2022-05-25 19:38:38 +02:00
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='2022', minor='6', micro='0')