Skip to content

Commit

Permalink
Merge 3bd1e6a into a14d266
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Apr 23, 2016
2 parents a14d266 + 3bd1e6a commit 460cba7
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions setup.py
Expand Up @@ -31,23 +31,10 @@
`pip install paramiko==dev`.
'''

# if someday we want to *require* setuptools, uncomment this:
# (it will cause setuptools to be automatically downloaded)
#import ez_setup
#ez_setup.use_setuptools()

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 = {}

from setuptools import setup


if sys.platform == 'darwin':
import setup_helper
Expand Down Expand Up @@ -89,5 +76,8 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
**kw
install_requires=[
'pycrypto>=2.1,!=2.4',
'ecdsa>=0.11',
],
)

0 comments on commit 460cba7

Please sign in to comment.