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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# Copyright (C) 2003-2008 Robey Pointer <robeypointer@gmail.com>
#
# This file is part of paramiko.
#
# Paramiko is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
#
# Paramiko is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Paramiko; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.
import sys
from setuptools import setup
if sys.platform == "darwin":
import setup_helper
setup_helper.install_custom_make_tarball()
long_description = open("README.rst").read()
# Version info -- read without importing
_locals = {}
with open("paramiko/_version.py") as fp:
exec(fp.read(), None, _locals)
version = _locals["__version__"]
# Have to build extras_require dynamically because it doesn't allow
# self-referencing and I hate repeating myself.
extras_require = {
"gssapi": [
"pyasn1>=0.1.7",
'gssapi>=1.4.1;platform_system!="Windows"',
'pywin32>=2.1.8;platform_system=="Windows"',
],
"invoke": ["invoke>=2.0"],
# TODO 4.0: remove entrypoint as irrelevant
"ed25519": [],
}
everything = []
for subdeps in extras_require.values():
everything.extend(subdeps)
extras_require["all"] = everything
setup(
name="paramiko",
version=version,
description="SSH2 protocol library",
long_description=long_description,
author="Jeff Forcier",
author_email="jeff@bitprophet.org",
url="https://paramiko.org",
project_urls={
"Docs": "https://docs.paramiko.org",
"Source": "https://github.com/paramiko/paramiko",
"Issues": "https://github.com/paramiko/paramiko/issues",
"Changelog": "https://www.paramiko.org/changelog.html",
"CI": "https://app.circleci.com/pipelines/github/paramiko/paramiko",
},
packages=["paramiko"],
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",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.6",
install_requires=[
"bcrypt>=3.2",
"cryptography>=3.3",
"pynacl>=1.5",
],
extras_require=extras_require,
)
|