Mark pywin32, winshell as dependencies for windows only.
This commit is contained in:
parent
b4d3ac87de
commit
e68fbbe278
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -8,5 +8,9 @@ setuptools.setup(
|
|||
author_email='pypi@voussoir.net',
|
||||
description='voussoir\'s toolkit',
|
||||
url='https://github.com/voussoir/voussoirkit',
|
||||
install_requires=['pyperclip', 'pywin32', 'winshell']
|
||||
install_requires=[
|
||||
'pyperclip',
|
||||
'pywin32;platform_system=="Windows"',
|
||||
'winshell;platform_system=="Windows"',
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue