Update setup.py to use 'console_scripts'

setup will generate appropriate executable sccripts on all platforms.
Tested on windows 8.1
pull/20/merge
Raghu 7 years ago committed by Marco Hinz
parent 8bd0629ec9
commit 53cd4962f8

@ -0,0 +1 @@
from .nvr import main

@ -14,8 +14,10 @@ setup(
description = 'Control Neovim instances using "nvr" commandline tool',
long_description = long_description,
install_requires = ['neovim', 'psutil'],
scripts = ['bin/nvr'],
packages = [],
entry_points = {
'console_scripts': ['nvr = bin.nvr:main']
},
packages = ['bin'],
version = '1.6.0',
license = 'MIT',
keywords = 'neovim nvim nvr remote helper',

Loading…
Cancel
Save