summaryrefslogtreecommitdiff
path: root/chimere/__init__.py
blob: 2ef2100fa6cde296219079c1f7062af28bc7d081 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2012-2013  Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet>

VERSION = (2, 0, 2)

def get_version():
    return u'.'.join((unicode(num) for num in VERSION))

__version__ = get_version()