Skip to content

Commit

Permalink
Merge pull request #16 from minrk/entrypoints-sad-panda
Browse files Browse the repository at this point in the history
setuptools entrypoint
  • Loading branch information
minrk committed Aug 17, 2015
2 parents 0ba0a47 + 55de4d7 commit 8105300
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@

if 'setuptools' in sys.modules:
setup_args.update(setuptools_args)
setup_args['entry_points'] = {
'console_scripts': [
'jupyter-trust = nbformat.sign:TrustNotebookApp.launch_instance',
]
}
setup_args.pop('scripts', None)

if __name__ == '__main__':
setup(**setup_args)

0 comments on commit 8105300

Please sign in to comment.