forked from yihong0618/rcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 853 Bytes
/
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
from setuptools import setup, find_packages
VERSION = "0.4.0"
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"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
],
entry_points={
"console_scripts": ["rcode = rcode.rcode:main"],
},
)