Added a license metadata line to specify Apache-2
[escalator.git] / api / setup.cfg
1 [metadata]
2 name = escalator
3 summary = OPNFV smooth upgrade service
4 description-file =
5         README.rst
6 author = OPNFV
7 author-email = opnfv-tech-discuss@lists.opnfv.org
8 home-page = http://www.opnfv.org/
9 license = Apache-2
10 classifier =
11         Environment :: OPNFV
12         Intended Audience :: Information Technology
13         Intended Audience :: System Administrators
14         License :: OSI Approved :: Apache Software License
15         Operating System :: POSIX :: Linux
16         Programming Language :: Python
17         Programming Language :: Python :: 2
18         Programming Language :: Python :: 2.7
19
20 [files]
21 data_files =
22     /etc/escalator = etc/*
23     /var/log/escalator =
24
25 [global]
26 setup-hooks =
27          pbr.hooks.setup_hook
28
29 [entry_points]
30 console_scripts =
31         escalator-api = escalator.cmd.api:main
32 oslo.config.opts =
33         escalator.api = escalator.opts:list_api_opts
34
35 [build_sphinx]
36 all_files = 1
37
38 [compile_catalog]
39 directory = escalator/locale
40 domain = escalator
41
42 [update_catalog]
43 domain = escalator
44 output_dir = escalator/locale
45 input_file = escalator/locale/escalator.pot
46
47 [extract_messages]
48 keywords = _ gettext ngettext l_ lazy_gettext
49 mapping_file = babel.cfg
50 output_file = escalator/locale/escalator.pot
51