Skip to content

Commit

Permalink
Fixed bug in server startup script
Browse files Browse the repository at this point in the history
  • Loading branch information
rayosborn committed Dec 23, 2014
1 parent 46600ec commit df443d2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

verbose=1

setup (name = nexusformat.__package_name__, # NeXpy
setup (name = nexusformat.__package_name__, # NeXpy
version = nexusformat.__version__,
license = nexusformat.__license__,
description = nexusformat.__description__,
Expand All @@ -35,7 +35,8 @@
package_dir = {'': 'src'},
packages = find_packages('src'),
entry_points={
'command_line_scripts': ['nxstartserver = nexusformat.start_server:main',],
# create & install scripts in <python>/bin
'console_scripts': ['nxstartserver=nexusformat.pyro.start_server:main'],
},
classifiers= ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down

0 comments on commit df443d2

Please sign in to comment.