moved docs to has/docs
[optf/has.git] / conductor / setup.cfg
1 # -*- encoding: utf-8 -*-
2 # -------------------------------------------------------------------------
3 #   Copyright (c) 2015-2017 AT&T Intellectual Property
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 # -------------------------------------------------------------------------
18 #
19
20 [metadata]
21 name = of-has
22 summary = ONAP Homing Service
23 author = AT&T
24 author-email = ikram@research.att.com
25 home-page = https://wiki.onap.org/pages/viewpage.action?pageId=16005528
26 classifier =
27     Development Status :: 4 - Beta
28     Environment :: ONAP
29     Intended Audience :: Information Technology
30     Intended Audience :: System Administrators
31     License :: OSI Approved  :: Apache Software License
32     Operating System :: POSIX :: Linux
33     Programming Language :: Python
34     Programming Language :: Python :: 2
35     Programming Language :: Python :: 2.7
36     Programming Language :: Python :: 3
37     Programming Language :: Python :: 3.5
38 keywords =
39     onap
40     homing
41     conductor
42
43 [global]
44 setup-hooks =
45     pbr.hooks.setup_hook
46
47 [files]
48 packages =
49     conductor
50 data_files =
51     etc/conductor = etc/conductor/*
52 #    conductor_integrationtests
53 #scripts =
54 #    bin/conductor-db-setup
55
56 [entry_points]
57 wsgi_scripts =
58     conductor-api = conductor.api.app:build_wsgi_app
59
60 console_scripts =
61     conductor-controller = conductor.cmd.controller:main
62     conductor-data = conductor.cmd.data:main
63     conductor-solver = conductor.cmd.solver:main
64     conductor-reservation = conductor.cmd.reservation:main
65
66 conductor.inventory_provider.plugin =
67     aai = conductor.data.plugins.inventory_provider.aai:AAI
68
69 conductor.vim_controller.plugin =
70     multicloud = conductor.data.plugins.vim_controller.multicloud:MULTICLOUD
71
72 conductor.service_controller.plugin =
73     sdnc = conductor.data.plugins.service_controller.sdnc:SDNC
74
75 oslo.config.opts =
76     conductor = conductor.opts:list_opts
77
78 oslo.config.opts.defaults =
79     conductor = conductor.conf.defaults:set_cors_middleware_defaults
80
81 #tempest.test_plugins =
82 #    conductor_tests = conductor_integrationtests.plugin:ConductorTempestPlugin
83
84 #[build_sphinx]
85 #all_files = 1
86 #build-dir = doc/build
87 #source-dir = doc/source
88
89 [pbr]
90 warnerrors = true
91 autodoc_index_modules = true
92