mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Remove sphinx-web script.
This commit is contained in:
3
setup.py
3
setup.py
@@ -79,11 +79,10 @@ setup(
|
||||
packages=['sphinx'],
|
||||
include_package_data=True,
|
||||
# replaced by the entry points
|
||||
#scripts=['sphinx-build.py', 'sphinx-web.py', 'sphinx-quickstart.py'],
|
||||
#scripts=['sphinx-build.py', 'sphinx-quickstart.py'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'sphinx-build = sphinx:main',
|
||||
'sphinx-web = sphinx.web:main',
|
||||
'sphinx-quickstart = sphinx.quickstart:main'
|
||||
]
|
||||
},
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Sphinx - Python documentation webserver
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
|
||||
:license: BSD.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
if __name__ == '__main__':
|
||||
print 'sphinx.web currently doesn\'t work -- it will undergo a ' \
|
||||
'serious rewrite soon.'
|
||||
sys.exit()
|
||||
from sphinx.web import main
|
||||
sys.exit(main(sys.argv))
|
||||
Reference in New Issue
Block a user