~neovim-ppa/neovim-ppa/python-neovim

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup

setup(name='neovim',
      version='0.0.8',
      description='Python client to neovim',
      url='http://github.com/neovim/python-client',
      download_url='https://github.com/neovim/python-client/archive/0.0.8.tar.gz',
      author='Thiago de Arruda',
      author_email='tpadilha84@gmail.com',
      license='MIT',
      packages=['neovim'],
      install_requires=[
          'greenlet',
          'msgpack-python',
          'pyuv',
      ],
      zip_safe=False)