tox: fix testing issues after VM build
[nfvbench.git] / setup.cfg
1 # Copyright 2017 Cisco Systems, Inc.  All rights reserved.
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
4 #    not use this file except in compliance with the License. You may obtain
5 #    a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 #    License for the specific language governing permissions and limitations
13 #    under the License.
14
15 [metadata]
16 name = nfvbench
17 summary = An NFV benchmarking tool for Mercury OpenStack
18 description-file =
19     README.rst
20 author = OpenStack
21 author-email = openstack-dev@lists.openstack.org
22 home-page = http://www.openstack.org/
23 classifier =
24     Environment :: OpenStack
25     Intended Audience :: Developers
26     Intended Audience :: Information Technology
27     Intended Audience :: System Administrators
28     License :: OSI Approved :: Apache Software License
29     Operating System :: POSIX :: Linux
30     Operating System :: MacOS
31     Programming Language :: Python
32     Programming Language :: Python :: 2
33     Programming Language :: Python :: 2.7
34
35 [files]
36 packages =
37     nfvbench
38     behave_tests
39
40 [entry_points]
41 console_scripts =
42     nfvbench = nfvbench.nfvbench:main
43     nfvbench_client = client.nfvbench_client:main
44 xtesting.testcase =
45     nfvbench_behaveframework = behave_tests.behavedriver:BehaveDriver
46
47 [compile_catalog]
48 directory = nfvbench/locale
49 domain = nfvbench
50
51 [update_catalog]
52 domain = nfvbench
53 output_dir = nfvbench/locale
54 input_file = nfvbench/locale/nfvbench.pot
55
56 [extract_messages]
57 keywords = _ gettext ngettext l_ lazy_gettext
58 mapping_file = babel.cfg
59 output_file = nfvbench/locale/nfvbench.pot
60
61 [wheel]
62 universal = 1