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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Thiago de Arruda
  • Date: 2014-05-13 23:01:56 UTC
  • Revision ID: git-v1:cd7ef838ce097f060607a6d35ae6209615e175fd
Add license and update readme

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from setuptools import setup
2
2
 
3
3
setup(name='neovim',
4
 
      version='0.0.9',
 
4
      version='0.0.1',
5
5
      description='Python client to neovim',
6
6
      url='http://github.com/neovim/python-client',
7
 
      download_url='https://github.com/neovim/python-client/archive/0.0.9.tar.gz',
 
7
      download_url='https://github.com/neovim/python-client/archive/0.0.1.tar.gz',
8
8
      author='Thiago de Arruda',
9
9
      author_email='tpadilha84@gmail.com',
10
10
      license='MIT',
11
11
      packages=['neovim'],
12
12
      install_requires=[
13
 
          'greenlet',
14
13
          'msgpack-python',
15
14
          'pyuv',
16
15
      ],