-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.cfg
74 lines (66 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
[metadata]
name = pyramid_jinja2
version = 2.10.1
description = Jinja2 template bindings for the Pyramid web framework
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
keywords = web wsgi pylons pyramid jinja2
license = BSD-derived (Repoze)
license_files =
LICENSE.txt
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Framework :: Pyramid
License :: Repoze Public License
url = https://github.com/Pylons/pyramid_jinja2
project_urls =
Documentation = https://docs.pylonsproject.org/projects/pyramid_jinja2/en/latest/
Changelog = https://github.com/Pylons/pyramid_jinja2/blob/main/CHANGES.rst
Issue Tracker = https://github.com/Pylons/pyramid_jinja2/issues
author = Rocky Burt
author_email = [email protected]
maintainer = Pylons Project
maintainer_email = [email protected]
[options]
package_dir=
=src
packages = find_namespace:
include_package_data = True
python_requires = >=3.7.0
install_requires =
jinja2>=2.5.0,!=2.11.0,!=2.11.1,!=2.11.2
markupsafe
pyramid>=1.3.0 # pyramid.path.DottedNameResolver
zope.deprecation
[options.packages.find]
where = src
[options.entry_points]
pyramid.scaffold =
pyramid_jinja2_starter = pyramid_jinja2.scaffolds:Jinja2ProjectTemplate
[options.extras_require]
testing =
webtest
coverage
pytest>=5.4.2
pytest-cov
docs =
setuptools # needed for pkg_resources in conf.py
pylons-sphinx-themes >= 0.3
sphinx>=1.7.5
[check-manifest]
ignore-bad-ideas = *.mo
[tool:pytest]
python_files = test_*.py
testpaths =
demo
tests
addopts = -W always --cov