2016-02-15 02:44:01 +00:00
|
|
|
from setuptools import setup
|
|
|
|
from os import path
|
|
|
|
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
|
|
|
|
with open(path.join(here, 'README.rst'), 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',
|
2016-02-15 02:44:01 +00:00
|
|
|
long_description = long_description,
|
2017-04-27 11:22:40 +00:00
|
|
|
install_requires = ['neovim', 'psutil'],
|
2017-05-23 11:59:53 +00:00
|
|
|
entry_points = {
|
2017-05-24 12:33:20 +00:00
|
|
|
'console_scripts': ['nvr = nvr.nvr:main']
|
2017-05-23 11:59:53 +00:00
|
|
|
},
|
2017-05-24 12:33:20 +00:00
|
|
|
packages = ['nvr'],
|
2017-08-06 23:59:59 +00:00
|
|
|
version = '1.8.2',
|
2016-02-15 02:44:01 +00:00
|
|
|
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',
|
2016-02-15 02:44:01 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|