Skip to content

Commit 2bf14d6

Browse files
committedMar 18, 2017
information for deb packaging
1 parent b4ade93 commit 2bf14d6

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed
 

‎.gitignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.idea/
2-
32
config.json
4-
5-
ssh-manager.desktop
3+
ssh-manager.desktop
4+
MANIFEST
5+
deb_dist/
6+
dist
7+
SshManager-2.0.tar.gz

‎README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ GUI ssh manager for Linux (Ubuntu)
77

88
# Run
99
```bash
10-
python3.5 app.py
10+
# To run console version type (use -h option to see all available options):
11+
ssh-manager
12+
# To run GUI version type:
13+
ssh-manager-gtk
14+
```
15+
16+
# Building deb package
17+
```bash
18+
python3.5 setup.py --command-packages=stdeb.command bdist_deb
1119
```
1220

1321
# Config

‎setup.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from distutils.core import setup
2+
3+
setup(name='SshManager',
4+
version='2.0',
5+
description='Ssh manager for Linux (Ubuntu)',
6+
author='Soshnikov Artem',
7+
author_email='ssh-manager@skobka.com',
8+
url='https://github.com/Doka-NT/ssh-manager',
9+
py_modules=['application', 'ssh-manager', 'ssh-manager-gtk'],
10+
packages=['gui', 'manager'],
11+
scripts=['ssh-manager', 'ssh-manager-gtk']
12+
)

‎ssh-manager.py ‎ssh-manager

File renamed without changes.

‎ssh-manager-gtk.py ‎ssh-manager-gtk

File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.