19 lines
303 B
Python
19 lines
303 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Created on 2017年5月7日
|
|
@author: Irony
|
|
@site: https://pyqt.site , https://github.com/PyQt5
|
|
@email: 892768447@qq.com
|
|
@file: 自动更新.mylibs.testlibs
|
|
@description:
|
|
"""
|
|
|
|
|
|
def version():
|
|
return "0.0.1"
|
|
|
|
|
|
def test():
|
|
print("version: 0.0.1")
|