Add keyring dependency to windows build

This commit is contained in:
Philipp Hörist 2016-12-11 17:20:58 +01:00
parent 82cfcbff8b
commit 46cd1a3c53
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ install:
- ps: Add-Content C:\Python34\Lib\site-packages\google\__init__.py " "
- "%PYTHON%\\python.exe -m pip install pycryptodome"
- "%PYTHON%\\python.exe -m pip install cx_freeze"
- "%PYTHON%\\python.exe -m pip install keyring"
- "%PYTHON%\\python.exe -m pip install pypiwin32"
- "%PYTHON%\\python.exe -m pip install pyopenssl"
- "%PYTHON%\\python.exe -m pip install --no-dependencies python-axolotl"

View File

@ -117,7 +117,7 @@ OPTIONS = {
'build_exe': {
'includes': ['gi', 'numbers', 'win32com.client', 'win32com.server'],
'packages': ['gi', 'cffi', 'cryptography', 'google', 'axolotl',
'pkg_resources', 'Crypto', 'pycparser'],
'pkg_resources', 'Crypto', 'pycparser', 'keyring'],
'include_files': INCLUDE_FILES,
}
}