File: version.py

package info (click to toggle)
python-css-parser 1.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,236 kB
  • sloc: python: 20,518; sh: 11; makefile: 7
file content (8 lines) | stat: -rw-r--r-- 214 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: LGPLv3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>

version = (1, 0, 8)
VERSION = '.'.join(map(str, version))

__version__ = '%s $Id$' % VERSION