Skip to content

Commit 983738e

Browse files
author
Olivier Roques
committed
Update README.md and setup script
1 parent 0ab3b17 commit 983738e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# python-sshcontroller
22

3-
This package implements a simple interface to communicate and exchange data
4-
with remote hosts via SSH. At its core, it is a wrapper around the extensive
5-
SSH library [paramiko](https://github.com/paramiko/paramiko/).
3+
This small package implements a simple interface to communicate and exchange
4+
data with remote hosts via SSH. It is essentially a wrapper around the
5+
extensive SSH library [paramiko](https://github.com/paramiko/paramiko/).
66

77
## Installation
88
Run:
@@ -14,7 +14,8 @@ Note that the package has been exclusively tested on Python 3.6+.
1414

1515
## Usage
1616

17-
All code snippets can also be found at [demo.py](./examples/demo.py).
17+
All code snippets can also be found at
18+
[demo.py](https://github.com/ojroques/python-sshcontroller/blob/main/examples/demo.py).
1819

1920
#### 1. Create a new SSH controller from a SSH key
2021
```python
@@ -156,4 +157,4 @@ ssh_controller.disconnect()
156157
```
157158

158159
## License
159-
[GNU Lesser General Public License v2.1](LICENSE)
160+
[GNU Lesser General Public License v2.1](https://github.com/ojroques/python-sshcontroller/blob/main/LICENSE)

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
packages=setuptools.find_packages(),
1616
classifiers=[
1717
"Programming Language :: Python :: 3",
18-
"Intended Audience :: Developers",
19-
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
18+
"Intended Audience :: Developers",
19+
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
2020
"Operating System :: OS Independent",
21-
"Topic :: Internet",
22-
"Topic :: Security :: Cryptography",
23-
"Topic :: Software Development",
21+
"Topic :: Internet",
22+
"Topic :: Security :: Cryptography",
23+
"Topic :: Software Development",
2424
],
2525
python_requires='>=3.6',
2626
)

sshcontroller/sshcontroller.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/python3
21
import errno
32
import logging
43
import paramiko

0 commit comments

Comments
 (0)