Application skeleton

This commit is contained in:
Kovid Goyal
2016-10-14 14:38:25 +05:30
parent d993a5732f
commit 90679edcc6
2 changed files with 94 additions and 0 deletions

7
kitty/constants.py Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
appname = 'kitty'
version = (0, 1, 0)
str_version = '.'.join(map(str, version))