Trivial spelling fix in runtest_setup.py

This commit is contained in:
Florian Bruhin 2016-06-22 20:18:00 +02:00 committed by GitHub
parent f7585c7549
commit 6359e75ff8
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ if __name__ == '__main__':
setup(
name="runtests",
version="0.1",
description="exemple of how embedding py.test into an executable using cx_freeze",
description="example of how embedding py.test into an executable using cx_freeze",
executables=[Executable("runtests_script.py")],
options={"build_exe": {'includes': pytest.freeze_includes()}},
)