Skip to content

Commit

Permalink
Merge pull request #282 from takluyver/entrypoints
Browse files Browse the repository at this point in the history
Use entry points for scripts
  • Loading branch information
minrk committed Aug 13, 2015
2 parents cfdd431 + e886d18 commit 9ab6a89
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,14 @@
setup_args['extras_require'] = extras_require
requires = setup_args['install_requires'] = install_requires

setup_args['entry_points'] = {
'console_scripts': [
'jupyter-notebook = notebook.notebookapp:main',
'jupyter-nbextension = notebook.nbextensions:main',
]
}
setup_args.pop('scripts', None)

#---------------------------------------------------------------------------
# Do the actual setup now
#---------------------------------------------------------------------------
Expand Down

0 comments on commit 9ab6a89

Please sign in to comment.