Skip to content

Commit

Permalink
dnspython dep for xmpp
Browse files Browse the repository at this point in the history
  • Loading branch information
dschep committed Feb 7, 2016
1 parent f497ca4 commit 03e9679
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
from setuptools import setup
from subprocess import check_output, CalledProcessError
from sys import platform
from sys import platform, version_info

deps = ['requests', 'PyYAML']
if platform == 'win32':
deps.append('pypiwin32')
extra_deps = {'xmpp': ['sleekxmpp'], 'emoji': ['emoji']}
extra_deps = {'xmpp': ['sleekxmpp',
'dnspython' if version_info[0] < 3 else 'dnspython3'],
'emoji': ['emoji']}
test_deps = ['mock', 'sleekxmpp', 'emoji']

try:
Expand Down

0 comments on commit 03e9679

Please sign in to comment.