├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── setup.py ├── sftpman-gtk.desktop ├── sftpman-gtk.png ├── sftpman-gui.png └── sftpman_gtk ├── __init__.py ├── gui.py ├── helper.py └── launcher.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE.txt 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/setup.py -------------------------------------------------------------------------------- /sftpman-gtk.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman-gtk.desktop -------------------------------------------------------------------------------- /sftpman-gtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman-gtk.png -------------------------------------------------------------------------------- /sftpman-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman-gui.png -------------------------------------------------------------------------------- /sftpman_gtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman_gtk/__init__.py -------------------------------------------------------------------------------- /sftpman_gtk/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman_gtk/gui.py -------------------------------------------------------------------------------- /sftpman_gtk/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman_gtk/helper.py -------------------------------------------------------------------------------- /sftpman_gtk/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spantaleev/sftpman-gtk/HEAD/sftpman_gtk/launcher.py --------------------------------------------------------------------------------