forked from paramiko/paramiko
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad4cddf
commit c1a0974
Showing
4 changed files
with
33 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,13 @@ | |
# 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() | ||
|
||
longdesc = ''' | ||
This is a library for making SSH2 connections (client or server). | ||
|
@@ -30,37 +37,29 @@ | |
git+https://github.com/paramiko/paramiko/#egg=paramiko``. | ||
''' | ||
|
||
import sys | ||
from setuptools import setup | ||
|
||
|
||
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 = "[email protected]", | ||
url = "https://github.com/paramiko/paramiko/", | ||
packages = [ 'paramiko' ], | ||
license = 'LGPL', | ||
platforms = 'Posix; MacOS X; Windows', | ||
classifiers = [ | ||
name="paramiko", | ||
version=version, | ||
description="SSH2 protocol library", | ||
long_description=longdesc, | ||
author="Jeff Forcier", | ||
author_email="[email protected]", | ||
url="https://github.com/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)', | ||
'License :: OSI Approved :: ' | ||
'GNU Library or Lesser General Public License (LGPL)', | ||
'Operating System :: OS Independent', | ||
'Topic :: Internet', | ||
'Topic :: Security :: Cryptography', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters