23 lines
475 B
Python
23 lines
475 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
Created on 2017年5月7日
|
|
@author: Irony."[讽刺]
|
|
@site: https://pyqt5.com, https://github.com/892768447
|
|
@email: 892768447@qq.com
|
|
@file: 自动更新.mylibs.testlibs
|
|
@description:
|
|
'''
|
|
|
|
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
|
|
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
|
|
__Version__ = "Version 1.0"
|
|
|
|
|
|
def version():
|
|
return "0.0.1"
|
|
|
|
|
|
def test():
|
|
print("version: 0.0.1")
|