setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 12
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 0
1
from setuptools import setup
2
3
setup(name='neovim',
4
      version='0.3.1',
5
      description='Transition packgage for pynvim',
6
      url='http://github.com/neovim/python-client',
7
      author='Thiago de Arruda',
8
      author_email='[email protected]',
9
      license='Apache',
10
      packages=[],
11
      install_requires=['pynvim>=0.3.1'],
12
      zip_safe=False)
13