Mark pywin32, winshell as dependencies for windows only.

master
Ethan Dalool 2020-01-19 21:00:42 -08:00
parent b4d3ac87de
commit e68fbbe278
1 changed files with 5 additions and 1 deletions

View File

@ -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"',
]
)