File tree Expand file tree Collapse file tree 5 files changed +47
-0
lines changed Expand file tree Collapse file tree 5 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1
1
* .swp
2
2
* .pyc
3
3
__pycache__ /
4
+ build /
5
+ dist /
6
+ sshcontroller_oroques.egg-info
Original file line number Diff line number Diff line change 1
1
# python-sshcontroller
2
+
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/ ) .
6
+
7
+ ## Installation
8
+ Run:
9
+ ```
10
+ pip3 install --user sshcontroller-oroques
11
+ ```
12
+
13
+ Note that the package has been exclusively tested on Python 3+.
14
+
15
+ ## Usage
16
+ Incoming
17
+
18
+ ## License
19
+ [ GNU Lesser General Public License v2.1] ( LICENSE )
Original file line number Diff line number Diff line change
1
+ import setuptools
2
+
3
+ with open ("README.md" , "r" ) as fh :
4
+ long_description = fh .read ()
5
+
6
+ setuptools .setup (
7
+ name = "sshcontroller-oroques" , # Replace with your own username
8
+ version = "1.0" ,
9
+ author = "Olivier Roques" ,
10
+
11
+ description = "A package to easily run SSH commands" ,
12
+ long_description = long_description ,
13
+ long_description_content_type = "text/markdown" ,
14
+ url = "https://github.com/ojroques/python-sshcontroller" ,
15
+ packages = setuptools .find_packages (),
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3" ,
18
+ "Intended Audience :: Developers" ,
19
+ "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)" ,
20
+ "Operating System :: OS Independent" ,
21
+ "Topic :: Internet" ,
22
+ "Topic :: Security :: Cryptography" ,
23
+ "Topic :: Software Development" ,
24
+ ],
25
+ python_requires = '>=3.6' ,
26
+ )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments