Skip to content

Commit

Permalink
👕 cleanup import & extradeps indents
Browse files Browse the repository at this point in the history
  • Loading branch information
dschep committed May 13, 2016
1 parent 9807a81 commit 46741b9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup, find_packages
from subprocess import check_output, CalledProcessError
from sys import platform, version_info
from sys import version_info

deps = ['requests', 'ruamel.yaml', 'appdirs']
extra_deps = {
':sys_platform == "win32"': ['pypiwin32==219'],
'xmpp': ['sleekxmpp',
'dnspython' if version_info[0] < 3 else 'dnspython3'],
'emoji': ['emoji'],
'pid':['psutil'],
}
'xmpp': [
'sleekxmpp', 'dnspython' if version_info[0] < 3 else 'dnspython3'],
'emoji': ['emoji'],
'pid':['psutil'],
}
test_deps = ['mock', 'sleekxmpp', 'emoji', 'psutil']

try:
Expand Down

0 comments on commit 46741b9

Please sign in to comment.