1
# Copyright (c) 2009 Twisted Matrix Laboratories.
2
# See LICENSE for details.
7
from twisted.python import dist
9
raise SystemExit("twisted.python.dist module not found. Make sure you "
10
"have installed the Twisted core package before "
11
"attempting to install any other Twisted projects.")
13
if __name__ == '__main__':
14
if sys.version_info[:2] >= (2, 4):
17
"Development Status :: 4 - Beta",
18
"Environment :: Console",
19
"Environment :: No Input/Output (Daemon)",
20
"Intended Audience :: Developers",
21
"Intended Audience :: End Users/Desktop",
22
"Intended Audience :: System Administrators",
23
"License :: OSI Approved :: MIT License",
24
"Programming Language :: Python",
27
"Topic :: Software Development :: Libraries :: Python Modules",
34
twisted_subproject="conch",
35
scripts=dist.getScripts("conch"),
38
description="Twisted SSHv2 implementation.",
39
author="Twisted Matrix Laboratories",
40
author_email="twisted-python@twistedmatrix.com",
41
maintainer="Paul Swartz",
42
url="http://twistedmatrix.com/trac/wiki/TwistedConch",
45
Conch is an SSHv2 implementation using the Twisted framework. It
46
includes a server, client, a SFTP client, and a key generator.