-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·36 lines (34 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#! /usr/bin/env python
from setuptools import setup
setup(
name="vmux",
description="vim/neovim/kakoune session handler within tmux",
long_description=open("README.md", "rt").read().strip(),
long_description_content_type="text/markdown",
author="Jan Christoph Ebersbach",
author_email="[email protected]",
url="https://github.com/jceb/vmux",
license="GPLv3",
packages=["vmux"],
install_requires=[
"pynvim>=0.3.2",
],
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest"],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
],
entry_points={"console_scripts": ["vmux = vmux.__main__:main"]},
scripts=[
"scripts/gnvim.vmux",
"scripts/gvim.vmux",
"scripts/kak.vmux",
"scripts/nvim-qt.vmux",
"scripts/nvim.vmux",
"scripts/nvr.vmux",
"scripts/vim.vmux",
],
use_scm_version={"local_scheme": "no-local-version"},
zip_safe=False,
)