diff options
author | Stephen Finucane <stephen@that.guru> | 2017-06-04 11:02:31 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-10-09 16:28:39 +0100 |
commit | bdaab9ef1be3e0d9ee594e659842cb162e147bfe (patch) | |
tree | a77af16c9898e98505eb995e62697fc2f6401316 /sphinx-autogen.py | |
parent | ae08b2d7943239f60b3110b3d1bc3cd78c0c7014 (diff) | |
download | sphinx-git-bdaab9ef1be3e0d9ee594e659842cb162e147bfe.tar.gz |
Remove static scripts
Executable scripts without the '.py' extension are already created and
installed by setuptools, by way of the 'console_scripts' section. These
scripts are unnecessary noise. If people want to test this behavior
locally, use a virtualenv.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'sphinx-autogen.py')
-rwxr-xr-x | sphinx-autogen.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sphinx-autogen.py b/sphinx-autogen.py deleted file mode 100755 index c9a78d158..000000000 --- a/sphinx-autogen.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -""" - Sphinx - Python documentation toolchain - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import sys - -if __name__ == '__main__': - from sphinx.ext.autosummary.generate import main - sys.exit(main(sys.argv[1:])) |