-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (26 loc) · 900 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
import setuptools
with open("README.md", "r") as fd:
long_description = fd.read()
setuptools.setup(
name="ssh_to_telnet_proxy",
version="0.2",
description="SSH to telnet proxy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/khornem/ssh_to_telnet_proxy",
packages=['ssh_to_telnet_proxy'],
data_files=[('/etc/systemd/system',['systemd/ssh2telnet.service'])],
entry_points = {
'console_scripts': ['ssh_to_telnet_proxy=ssh_to_telnet_proxy.ssh_to_telnet_proxy:main'],
},
install_requires=[
'paramiko',
'pywin32 ; platform_system=="Windows"',
'python-gssapi ; platform_system=="Linux"'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)