Updated from global requirements

Change-Id: I50baa49c8edd8feab768f18d07936a2684c06755
This commit is contained in:
OpenStack Proposal Bot 2016-09-01 21:54:46 +00:00
parent caef578c9a
commit 29c6c6f95c
4 changed files with 52 additions and 40 deletions

39
requirements.txt Executable file → Normal file
View File

@ -1,22 +1,25 @@
oslo.config # The order of packages is significant, because pip processes them in the order
oslo.log # of appearance. Changing the order has an impact on the overall integration
oslo.middleware # process, which may cause wedges in the gate later.
oslo.serialization oslo.config>=3.14.0 # Apache-2.0
oslo.utils oslo.log>=1.14.0 # Apache-2.0
oslo.middleware>=3.0.0 # Apache-2.0
oslo.serialization>=1.10.0 # Apache-2.0
oslo.utils>=3.16.0 # Apache-2.0
python-keystoneclient python-keystoneclient!=2.1.0,>=2.0.0 # Apache-2.0
falcon falcon>=0.1.6 # Apache-2.0
keystonemiddleware keystonemiddleware!=4.1.0,!=4.5.0,>=4.0.0 # Apache-2.0
pastedeploy PasteDeploy>=1.5.0 # MIT
pbr pbr>=1.6 # Apache-2.0
six six>=1.9.0 # MIT
pyparsing pyparsing>=2.0.1 # MIT
voluptuous voluptuous>=0.8.9 # BSD License
#influxdb #influxdb
#cassandra-driver>=2.1.4,!=3.6.0 # Apache-2.0 #cassandra-driver>=2.1.4,!=3.6.0 # Apache-2.0
eventlet eventlet!=0.18.3,>=0.18.2 # MIT
kafka-python>=0.9.5,<1.0.0 kafka-python<1.0.0,>=0.9.5 # Apache-2.0
simplejson simplejson>=2.2.0 # MIT
monasca-common>=0.0.2 monasca-common>=1.0.0 # Apache-2.0
sqlalchemy SQLAlchemy<1.1.0,>=1.0.10 # MIT

0
setup.cfg Executable file → Normal file
View File

View File

@ -1,4 +1,3 @@
#!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
@ -15,9 +14,16 @@
# limitations under the License. # limitations under the License.
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
from setuptools import setup import setuptools
setup( # In python < 2.7.4, a lazy loading of package `pbr` will break
setup_requires=['pbr'], # setuptools if some other modules registered functions in `atexit`.
pbr=True, # solution from: http://bugs.python.org/issue15881#msg170215
) try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=1.8'],
pbr=True)

View File

@ -1,18 +1,21 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8 # Hacking already pins down pep8, pyflakes and flake8
hacking<0.11,>=0.10.0 hacking<0.11,>=0.10.0
Babel>=1.3 Babel>=2.3.4 # BSD
coverage>=3.6 coverage>=3.6 # Apache-2.0
fixtures>=0.3.14 fixtures>=3.0.0 # Apache-2.0/BSD
flake8==2.2.4 flake8<2.6.0,>=2.5.4 # MIT
pep8==1.5.7 pep8==1.5.7 # MIT
httplib2>=0.7.5 httplib2>=0.7.5 # MIT
mock>=1.0 mock>=2.0 # BSD
funcsigs funcsigs>=0.4;python_version=='2.7' or python_version=='2.6' # Apache-2.0
mox>=0.5.3 mox>=0.5.3 # Apache-2.0
nose nose # LGPL
oslotest oslotest>=1.10.0 # Apache-2.0
python-subunit>=0.0.18 python-subunit>=0.0.18 # Apache-2.0/BSD
testrepository>=0.0.18 testrepository>=0.0.18 # Apache-2.0/BSD
testscenarios>=0.4 testscenarios>=0.4 # Apache-2.0/BSD
testtools>=0.9.34 testtools>=1.4.0 # MIT
tempest-lib tempest-lib>=0.14.0 # Apache-2.0