Manual sync with openstack/requirements

In I530bd05641f39d94e5a543dcbb219a38f08a1460 it's been requested that the
requirements bot sync global requirements to monasca-transform.

This will fail as tox is listed in test-requirements.txt.  This change
remove tox from test-requirements as manually runs the bot against this
repo.  meaning that once the change merges requirements syncs will be
automatic and simpler

Change-Id: I1c5e5c288b86bd44c1346a26079bf8bd9b7b9167
Needed-By: I530bd05641f39d94e5a543dcbb219a38f08a1460
This commit is contained in:
Tony Breeds 2016-11-28 19:37:33 +11:00
parent 9fb6dab730
commit 51001d206a
3 changed files with 41 additions and 27 deletions

View File

@ -1,11 +1,14 @@
# 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.
pbr>=1.8 # Apache-2.0
PyMySQL
six>=1.7.0 # MIT
SQLAlchemy<1.1.0,>=0.9.9
kafka-python<=0.9.5
stevedore>=1.5.0 # Apache-2.0
monasca-common
oslo.config>=1.2.1
oslo.log
oslo.service
tooz
PyMySQL!=0.7.7,>=0.7.6 # MIT License
six>=1.9.0 # MIT
SQLAlchemy<1.1.0,>=1.0.10 # MIT
kafka-python<1.0.0,>=0.9.5 # Apache-2.0
stevedore>=1.17.1 # Apache-2.0
monasca-common>=1.0.0 # Apache-2.0
oslo.config!=3.18.0,>=3.14.0 # Apache-2.0
oslo.log>=3.11.0 # Apache-2.0
oslo.service>=1.10.0 # Apache-2.0
tooz>=1.28.0 # Apache-2.0

33
setup.py Executable file → Normal file
View File

@ -1,20 +1,29 @@
#!/usr/bin/env python
# Copyright 2016 Hewlett Packard Enterprise Development Company LP
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from setuptools import setup
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
setup(
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# 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,10 +1,12 @@
# 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.
# mock object framework
hacking>=0.10.2
flake8>=2.2.4,<3.0.0
nose==1.3.0
mock>=1.0.1
tox
fixtures==1.4.0
flake8<2.6.0,>=2.5.4 # MIT
nose # LGPL
mock>=2.0 # BSD
fixtures>=3.0.0 # Apache-2.0/BSD
# required to build documentation
sphinx!=1.3b1,<1.4,>=1.2.1 # BSD
#oslosphinx>=4.7.0 # Apache-2.0