Skip to content

Commit 2fedf0a

Browse files
Olivier RoquesOlivier Roques
authored andcommitted
Restructure project
1 parent 8d6db10 commit 2fedf0a

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
*.swp
22
*.pyc
33
__pycache__/
4+
build/
5+
dist/
6+
sshcontroller_oroques.egg-info

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
11
# 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)

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
author_email="[email protected]",
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+
)

sshcontroller/__init__.py

Whitespace-only changes.
File renamed without changes.

0 commit comments

Comments
 (0)