11 lines
197 B
Python
11 lines
197 B
Python
#!/usr/bin/env python3
|
|
#-*- coding:utf-8 -*-
|
|
|
|
import os
|
|
import sys
|
|
|
|
HOME = os.environ.get("HOME", os.path.expanduser("~"))
|
|
__version__ = (1, 0, 0)
|
|
__versionstr__ = ".".join(map(str, __version__))
|
|
|