Added logic to find CA certs for SSL connections (for frozen apps) and added some logging

This commit is contained in:
blitzmann
2015-10-24 23:32:15 -04:00
parent c04b7e0552
commit 167eb60fe3
4 changed files with 20 additions and 4 deletions

View File

@@ -4,11 +4,12 @@ Distribution builder for pyfa.
Windows executable: python setup.py build
Windows executable + installer: python setup.py bdist_msi
"""
import requests.certs
# The modules that contain the bulk of teh source
packages = ['eos', 'gui', 'service', 'utils']
# Extra files that will be copied into the root directory
include_files = ['eve.db', 'LICENSE', 'README.md']
include_files = ['eve.db', 'LICENSE', 'README.md', (requests.certs.where(),'cacert.pem')]
# this is read by dist.py to package the icons
icon_dirs = ['gui', 'icons', 'renders']