示例#1
0
def upload_to_pypi():
    with fsys.Cwd("lib", __file__):
        shell.call("_Upload_PyPI.py")
示例#2
0
def all_docs():
    readme_excerpt()
    with fsys.Cwd("doc", __file__):
        shell.call("make html")
示例#3
0
def install_package_locally():
    with fsys.Cwd("lib", __file__):
        shell.call("_Install_Package.py")
示例#4
0
def run_tests():
    with fsys.Cwd("tests", __file__):
        shell.call("_Run_Tests.py")
示例#5
0
def check_version():
    with fsys.Cwd(".", __file__):
        shell.call("_Check_Versions.py")
示例#6
0
def cleanup():
    with fsys.Cwd("lib"):
        shell.call("_Cleanup.bat")
    with fsys.Cwd("doc"):
        shell.call("make clean")
示例#7
0
def cleanup():
    with fsys.Cwd("app"):
        shell.call("_Cleanup.py")