File: __version__.py

package info (click to toggle)
python-clevercsv 0.8.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,080 kB
  • sloc: python: 6,211; ansic: 870; makefile: 90
file content (7 lines) | stat: -rw-r--r-- 141 bytes parent folder | download
1
2
3
4
5
6
7
# -*- coding: utf-8 -*-

from typing import Tuple

VERSION: Tuple[int, int, int] = (0, 8, 4)

__version__: str = ".".join(map(str, VERSION))