summaryrefslogtreecommitdiff
path: root/sphinx-quickstart.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-06-04 11:02:31 +0100
committerStephen Finucane <stephen@that.guru>2017-10-09 16:28:39 +0100
commitbdaab9ef1be3e0d9ee594e659842cb162e147bfe (patch)
treea77af16c9898e98505eb995e62697fc2f6401316 /sphinx-quickstart.py
parentae08b2d7943239f60b3110b3d1bc3cd78c0c7014 (diff)
downloadsphinx-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-quickstart.py')
-rwxr-xr-xsphinx-quickstart.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/sphinx-quickstart.py b/sphinx-quickstart.py
deleted file mode 100755
index 3caa6590f..000000000
--- a/sphinx-quickstart.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.cmd.quickstart import main
- sys.exit(main(sys.argv[1:]))