monasca-analytics/setup.py
Hisashi Osanai 288bbd3b18 tox support
This patch provides tox support.

Note:
Basically flake8 section follows monasca-api's ignore rule
except H404.

H405: multi line docstring summary not separated with an empty line

Change-Id: Iac8d5516a66226a7b3fface95059c5e238e8cb72
2016-06-03 17:46:33 +00:00

27 lines
759 B
Python

#!/usr/bin/env python
# Copyright (c) 2016 Hewlett Packard Enterprise Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not used 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
#
# 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.
"""
Monanas setup script.
"""
from setuptools import setup
setup(
setup_requires=['pbr>=1.8'],
pbr=True,
)