-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
64 lines (55 loc) · 1.49 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
name = murano-engine
summary = The Engine is orchestration engine server
version = 0.5
description-file =
README.rst
license = Apache License, Version 2.0
author = Mirantis, Inc.
author-email = [email protected]
home-page = https://launchpad.net/murano
classifier =
Development Status :: 5 - Production/Stable
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
[files]
packages =
engine
[global]
setup-hooks =
pbr.hooks.setup_hook
[entry_points]
console_scripts =
engine = engine.cmd.run:main
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[compile_catalog]
directory = engine/locale
domain = engine
[update_catalog]
domain = engine
output_dir = engine/locale
input_file = engine/locale/engine.pot
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = engine/locale/engine.pot
[nosetests]
# NOTE(jkoelker) To run the test suite under nose install the following
# coverage http://pypi.python.org/pypi/coverage
# tissue http://pypi.python.org/pypi/tissue (pep8 checker)
# openstack-nose https://github.com/jkoelker/openstack-nose
verbosity=2
cover-package = engine
cover-html = true
cover-erase = true