Merge "Move windows requirements to requirements.txt"

This commit is contained in:
Jenkins 2015-07-01 19:02:22 +00:00 committed by Gerrit Code Review
commit c452babc59
2 changed files with 5 additions and 7 deletions

View File

@ -37,3 +37,7 @@ oslo.service>=0.1.0 # Apache-2.0
oslo.utils>=1.6.0 # Apache-2.0
python-novaclient>=2.22.0
# Windows-only requirements
pywin32;sys_platform=='win32'
wmi;sys_platform=='win32'

View File

@ -1,4 +1,3 @@
#!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
@ -27,9 +26,4 @@ except ImportError:
setuptools.setup(
setup_requires=['pbr'],
pbr=True,
# TODO(lifeless): Once pbr supports markers in requirements.txt, move this
# there, so that update.py can see it.
extras_require={
':sys_platform=="win32"': ['pywin32', 'wmi']
})
pbr=True)