Ejemplo n.º 1
0
#import ez_setup
#ez_setup.use_setuptools()

import sys
try:
    from setuptools import setup
    kw = {
        'install_requires': 'pycrypto >= 2.1, != 2.4',
    }
except ImportError:
    from distutils.core import setup
    kw = {}

if sys.platform == 'darwin':
    import setup_helper
    setup_helper.install_custom_make_tarball()


setup(name = "ssh",
      version = "1.8.0",
      description = "SSH2 protocol library",
      author = "Jeff Forcier",
      author_email = "*****@*****.**",
      url="https://github.com/bitprophet/ssh/",
      packages = [ 'ssh' ],
      license = 'LGPL',
      platforms = 'Posix; MacOS X; Windows',
      classifiers = [ 'Development Status :: 5 - Production/Stable',
                      'Intended Audience :: Developers',
                      'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
                      'Operating System :: OS Independent',
Ejemplo n.º 2
0
import sys
try:
    from setuptools import setup
    kw = {
        'install_requires': [
            'pycrypto >= 2.1, != 2.4',
            'ecdsa >= 0.11',
        ],
    }
except ImportError:
    from distutils.core import setup
    kw = {}

if sys.platform == 'darwin':
    import setup_helper
    setup_helper.install_custom_make_tarball()

# Version info -- read without importing
_locals = {}
with open('paramiko/_version.py') as fp:
    exec(fp.read(), None, _locals)
version = _locals['__version__']

setup(
    name="paramiko",
    version=version,
    description="SSH2 protocol library",
    long_description=longdesc,
    author="Jeff Forcier",
    author_email="*****@*****.**",
    url="https://github.com/paramiko/paramiko/",