Skip to content

Commit

Permalink
Merge 0a5117b into 934b6e2
Browse files Browse the repository at this point in the history
  • Loading branch information
sametmax committed Oct 21, 2014
2 parents 934b6e2 + 0a5117b commit fba01c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
if sys.subversion[0].lower().startswith("pypy"):
import distutils.core
setup = distutils.core.setup
extra = dict(requires=requires)
extra = dict(extras_require={'ssl': requires})
else:
import setuptools
setup = setuptools.setup
extra = dict(install_requires=requires)
extra = dict(extras_require={'ssl': requires})

try:
from setuptools.command import egg_info
Expand Down

0 comments on commit fba01c1

Please sign in to comment.