-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
44 lines (38 loc) · 1.13 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
[flake8]
exclude = build,dist,docs/conf.py,*.egg-info,.eggs,.cache,.tox
max-line-length = 79
[pytest]
addopts = --color=auto --cov=concierge_jinja --cov-report=term-missing
norecursedirs = build dist docs *.egg-info .eggs cache .tox
[wheel]
universal = 0
[metadata]
name = concierge-jinja
version = 0.2.1
description-file = README.rst
summary = Jinja2 templating for concierge
author = Sergey Arkhipov
author-email = [email protected]
maintainer = Sergey Arkhipov
maintainer-email = [email protected]
license = MIT
home-page = https://github.com/9seconds/concierge-jinja
project-url = https://github.com/9seconds/concierge-jinja
requires-python = >=3.3
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
[files]
packages =
concierge_jinja
[entry_points]
concierge.templater =
jinja = concierge_jinja.templater:Jinja2Templater
[global]
setup-hooks =
pbr.hooks.setup_hook