def upload_to_pypi(): with fsys.Cwd("lib", __file__): shell.call("_Upload_PyPI.py")
def all_docs(): readme_excerpt() with fsys.Cwd("doc", __file__): shell.call("make html")
def install_package_locally(): with fsys.Cwd("lib", __file__): shell.call("_Install_Package.py")
def run_tests(): with fsys.Cwd("tests", __file__): shell.call("_Run_Tests.py")
def check_version(): with fsys.Cwd(".", __file__): shell.call("_Check_Versions.py")
def cleanup(): with fsys.Cwd("lib"): shell.call("_Cleanup.bat") with fsys.Cwd("doc"): shell.call("make clean")
def cleanup(): with fsys.Cwd("app"): shell.call("_Cleanup.py")