diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-13 13:45:21 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-13 13:45:21 -0500 |
commit | 51c7485cbb7ecb03f1f96d6d26d5703c61b868d8 (patch) | |
tree | 204e68acbb8227b16738117b0455f45543838de3 /setup.py | |
parent | 0c09e5436457f81c91389417d0aef9f1a7f6edf3 (diff) | |
parent | 091f518118c77c0452579b815069884f7cfdd0ff (diff) | |
download | cherrypy-git-51c7485cbb7ecb03f1f96d6d26d5703c61b868d8.tar.gz |
Merge with master
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -58,7 +58,6 @@ packages = [ 'cherrypy.process', 'cherrypy.scaffold', ] -scripts = ['cherrypy/cherryd'] install_requires = [ 'six', @@ -107,7 +106,7 @@ setup_params = dict( url=url, license=cp_license, packages=packages, - scripts=scripts, + entry_points={"console_scripts": ["cherryd = cherrypy.__main__:run"]}, include_package_data=True, install_requires=install_requires, extras_require=extras_require, |