-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.cfg
63 lines (56 loc) · 1.71 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
[easy_install]
zip_ok = false
[aliases]
dev = develop easy_install pyramid_chameleon[testing]
docs = develop easy_install pyramid_chameleon[docs]
[metadata]
name = pyramid_chameleon
version = 0.4.dev0
description = Chameleon template system bindings for the Pyramid web framework
long_description = file: README.rst, CHANGES.txt
long_description_content_type = text/x-rst
keywords = pyramid chameleon templates templating html markup
classifiers=
Development Status :: 6 - Mature
Programming Language :: Python
Framework :: Pylons
Environment :: Web Environment
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Intended Audience :: Developers
License :: Repoze Public License
Topic :: Text Processing :: Markup :: XML
Topic :: Text Processing :: Markup :: HTML
url = https://github.com/Pylons/pyramid_chameleon
author= [email protected], Pylons & Pyramid community
author_email = [email protected]
license = BSD-derived (http://www.repoze.org/LICENSE.txt)
[options]
python_requires = >=3.7.0
install_requires =
pyramid
Chameleon
[options.extras_require]
testing =
pytest
pytest-cov
coverage
docs =
Sphinx>=1.7.4
docutils
repoze.sphinx.autointerface
pylons-sphinx-themes
[options.entry_points]
console_scripts =
pyramid-chameleon-precompile = pyramid_chameleon.precompile:precompile
[tool:pytest]
python_files = test_*.py
testpaths =
pyramid_chameleon/tests
addopts = -W always