Skip to content

Commit

Permalink
Fix setup.py for Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasily-v-ryabov committed Oct 30, 2016
1 parent f4474ba commit 1ad046f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ def setup_path(path = ""):

if sys.platform == 'win32':
install_requires = ['six', 'pypiwin32', 'comtypes']
packages = ["pywinauto", "pywinauto.tests", "pywinauto.controls"]
else:
install_requires = ['six', 'python-xlib']
packages = ["pywinauto", "pywinauto.linux"]

setup(name='pywinauto',
version = '0.6.0',
Expand All @@ -76,7 +78,7 @@ def setup_path(path = ""):
""",
platforms=['win32'],

packages = ["pywinauto", "pywinauto.tests", "pywinauto.controls"],
packages = packages,

license = "BSD 3-clause",
classifiers=[
Expand Down

0 comments on commit 1ad046f

Please sign in to comment.