forked from chvolkmann/code-connect
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
38 lines (36 loc) · 1.19 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
37
38
from setuptools import find_packages, setup
VERSION = "0.6.2"
setup(
name="rcode",
version=VERSION,
description="vscode remode code .",
keywords="python vscode",
author="chvolkmann, yihong0618",
author_email="[email protected]",
url="https://github.com/yihong0618/code-connect",
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=["sshconf", "psutil"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
],
entry_points={
"console_scripts": [
"rcode = rcode.rcode:main",
"rcursor = rcode.rcode:cmain",
"rssh = rcode.rssh:main",
"rssh-ipc = rcode.ipc.ipc_runner:main",
"ssh-wrapper = rcode.rssh:ssh_wrapper",
],
},
)