2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-11 13:10:34 +00:00
neovim-remote/setup.py

37 lines
1.2 KiB
Python
Raw Normal View History

from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
2017-09-29 15:11:05 +00:00
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'neovim-remote',
author = 'Marco Hinz',
author_email = 'mh.codebro@gmail.com',
url = 'https://github.com/mhinz/neovim-remote',
2017-06-20 18:50:55 +00:00
description = 'Control nvim processes using "nvr" commandline tool',
long_description = long_description,
install_requires = ['neovim>=0.2.3', 'psutil', 'setuptools'],
entry_points = {
2017-05-24 12:33:20 +00:00
'console_scripts': ['nvr = nvr.nvr:main']
},
2017-05-24 12:33:20 +00:00
packages = ['nvr'],
version = '1.9.1',
license = 'MIT',
keywords = 'neovim nvim nvr remote helper',
classifiers = [
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2017-05-25 13:47:12 +00:00
'Programming Language :: Python :: 3.6',
],
)