-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (46 loc) · 1.78 KB
/
setup.py
File metadata and controls
executable file
·56 lines (46 loc) · 1.78 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
"""Install 'vim_client' module and the command-line tools."""
from pathlib import Path
from setuptools import find_packages, setup
CURRENT_DIRECTORY = Path(__file__).parent.resolve()
LONG_DESCRIPTION = (CURRENT_DIRECTORY / "README.md") \
.read_text(encoding="utf-8")
setup(
name="vim-client",
version="1.0.5",
description=("Connect to Vim server, edit files, evaluate Vim "
"expressions, and send commands to Vim."),
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/jamescherti/vim-client",
author="James Cherti",
keywords="vim, server, remote, edit, client, clientserver",
packages=find_packages(),
python_requires=">=3.6, <4",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Editors",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
entry_points={
"console_scripts": [
"vim-client-edit=vim_client.cli:cli_edit",
"vim-client-diff=vim_client.cli:cli_diff",
],
},
project_urls={
"Bug Reports": "https://github.com/jamescherti/vim-client/issues",
"Source": "https://github.com/jamescherti/vim-client",
},
)