Move Windows libs to libs/windows

This commit is contained in:
Labrys of Knossos 2018-12-16 13:36:03 -05:00
commit 3a692c94a5
684 changed files with 4 additions and 1 deletions

View file

@ -28,6 +28,10 @@ if sys.version_info[0] == 2:
LIBS_DIR_PY2 = os.path.join(LIBS_DIR, 'py2') LIBS_DIR_PY2 = os.path.join(LIBS_DIR, 'py2')
sys.path.insert(0, LIBS_DIR_PY2) sys.path.insert(0, LIBS_DIR_PY2)
if sys.platform.startswith('win32') or (os.name == 'nt'):
LIBS_DIR_WIN = os.path.join(LIBS_DIR, 'win')
sys.path.insert(0, LIBS_DIR_WIN)
# init preliminaries # init preliminaries
SYS_ARGV = sys.argv[1:] SYS_ARGV = sys.argv[1:]
APP_FILENAME = sys.argv[0] APP_FILENAME = sys.argv[0]

View file

@ -1,3 +1,2 @@
-r requirements.txt
jaraco-windows jaraco-windows
pywin32 pywin32

Some files were not shown because too many files have changed in this diff Show more