mirror of https://github.com/saimn/sigal.git
6 changed files with 45 additions and 18 deletions
@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*- |
||||
|
||||
import sys |
||||
|
||||
PY2 = sys.version_info[0] == 2 |
||||
|
||||
if not PY2: |
||||
text_type = str |
||||
string_types = (str,) |
||||
unichr = chr |
||||
else: |
||||
text_type = unicode # NOQA |
||||
string_types = (str, unicode) # NOQA |
||||
unichr = unichr |
||||
@ -1,8 +1,8 @@
|
||||
# -*- coding:utf-8 -*- |
||||
|
||||
__title__ = 'sigal' |
||||
__author__ = u"Simon Conseil" |
||||
__version__ = "0.5.1" |
||||
__license__ = "MIT" |
||||
__author__ = 'Simon Conseil' |
||||
__version__ = '0.5.1' |
||||
__license__ = 'MIT' |
||||
__url__ = 'https://github.com/saimn/sigal' |
||||
__all__ = ['__title__', '__author__', '__version__', '__license__', '__url__'] |
||||
|
||||
Loading…
Reference in new issue