diff options
author | georg.brandl <devnull@localhost> | 2008-03-23 17:43:22 +0000 |
---|---|---|
committer | georg.brandl <devnull@localhost> | 2008-03-23 17:43:22 +0000 |
commit | 9decabc7e2eb0b2bf11019f20c32c62aeef258fb (patch) | |
tree | d497c508356030924b38a031cfe630a955fc56ae /setup.py | |
parent | 2f1d077345e91ae7c7b2f38500be43ac88bf7d80 (diff) | |
download | sphinx-9decabc7e2eb0b2bf11019f20c32c62aeef258fb.tar.gz |
Don't install scripts twice. Thanks to lunar.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -57,7 +57,8 @@ setup( platforms='any', packages=['sphinx'], include_package_data=True, - scripts=['sphinx-build.py', 'sphinx-web.py', 'sphinx-quickstart.py'], + # replaced by the entry points + #scripts=['sphinx-build.py', 'sphinx-web.py', 'sphinx-quickstart.py'], entry_points={ 'console_scripts': [ 'sphinx-build = sphinx:main', |