We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 618fcd0 commit d8830e8Copy full SHA for d8830e8
setup.py
@@ -4,7 +4,6 @@
4
from setuptools import setup
5
6
install_requires = [
7
- 'click>=3.0',
8
'msgpack-python>=0.4.0',
9
]
10
@@ -37,8 +36,10 @@
37
36
'neovim.msgpack_rpc.event_loop', 'neovim.plugin'],
38
install_requires=install_requires,
39
ext_modules=cythonize('neovim/ui/screen.py') if has_cython else None,
40
- entry_points='''
41
- [console_scripts]
42
- pynvim=neovim.ui.cli:main
43
- ''',
+ extras_require={
+ 'GUI': ['click>=3.0', 'cairo', 'gobject']
+ },
+ entry_points={
+ 'console_scripts': ['pynvim=neovim.ui.cli:main [GUI]'],
44
45
zip_safe=False)
0 commit comments