Bump to version 0.0.38 with requirement pywin32.

Because winwhich requires it and I thought winshell was enough.
master
Ethan Dalool 2020-01-15 22:31:11 -08:00
parent 7ab395c9f6
commit c6ac312e7e
1 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@ import setuptools
setuptools.setup(
name='voussoirkit',
packages=setuptools.find_packages(),
version='0.0.37',
version='0.0.38',
author='voussoir',
author_email='ethan@voussoir.net',
description='voussoir\'s toolkit',
url='https://github.com/voussoir/voussoirkit',
install_requires=['pyperclip', 'winshell']
install_requires=['pyperclip', 'pywin32', 'winshell']
)