forked from spantaleev/sftpman-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.39 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
SftpMan
=======
SftpMan is a command-line application (with a GUI frontend packaged separately) that makes it easy to setup and mount SSHFS/SFTP file systems.
It allows you to define all your SFTP systems and easily mount/unmount them.
A GTK frontend is available, named sftpman-gtk.
"""
from setuptools import setup
setup(
name = "sftpman",
version = '0.6.2',
description = "A command-line application that helps you mount SFTP file systems.",
long_description = __doc__,
author = "Slavi Pantaleev",
author_email = "s.pantaleev@gmail.com",
url = "https://github.com/spantaleev/sftpman",
keywords = ["sftp", "ssh", "sshfs"],
license = "BSD",
packages = ['sftpman'],
entry_points="""
[console_scripts]
sftpman = sftpman.launcher:main
""",
zip_safe = False,
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Topic :: Communications :: File Sharing",
"Topic :: Internet",
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Topic :: System :: Networking",
"Topic :: Utilities"
]
)