DEBSOURCES
Skip Quicknav
sources / python-clevercsv / 0.8.4%2Bds-1 / clevercsv / __version__.py
1234567
# -*- coding: utf-8 -*- from typing import Tuple VERSION: Tuple[int, int, int] = (0, 8, 4) __version__: str = ".".join(map(str, VERSION))