Generalization of recursive function
[apex.git] / setup.cfg
1 [metadata]
2 name = apex
3 summary = TripleO based installer for deploying OPNFV
4 description-file =
5     INFO
6 author = Apex Team
7 author-email = michapma@redhat.com trozet@redhat.com dradez@redhat.com
8 home-page = https://github.com/opnfv/apex
9 license =  Apache-2
10 classifier =
11   License :: OSI Approved :: Apache Software License
12   Development Status :: 4 - Beta
13   Intended Audience :: Developers
14   Intended Audience :: System Administrators
15   Intended Audience :: Information Technology
16   Topic :: Utilities
17   Programming Language :: Python :: 3
18   Programming Language :: Python :: 3.5
19
20 [global]
21 setup-hooks =
22     pbr.hooks.setup_hook
23
24 [entry_points]
25 console_scripts =
26     opnfv-deploy = apex.deploy:main
27     opnfv-clean = apex.clean:main
28
29 [files]
30 packages =
31     apex
32 data_files =
33     share/opnfv-apex/ =
34         build/network-environment.yaml
35         build/opnfv-environment.yaml
36         build/upstream-environment.yaml
37         build/nics-template.yaml.jinja2
38         build/csit-environment.yaml
39         build/virtual-environment.yaml
40         build/baremetal-environment.yaml
41         build/domain.xml
42     share/opnfv-apex/ansible = lib/ansible/*
43     share/opnfv-apex/config = config/*
44     share/opnfv-apex/docs = docs/*
45
46 [wheel]
47 universal = 1
48
49 [pbr]
50 skip_authors = True
51 skip_changelog = True