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
|
[metadata]
name = Genshi
version = 0.7.9
description = A toolkit for generation of output for the web
long_description =
Genshi is a Python library that provides an integrated set of
components for parsing, generating, and processing HTML, XML or
other textual content for output generation on the web. The major
feature is a template language, which is heavily inspired by Kid.
author = Edgewall Software
author_email = info@edgewall.org
license = BSD
license_files = COPYING
url = https://github.com/edgewall/genshi
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Markup :: HTML
Topic :: Text Processing :: Markup :: XML
keywords =
python.templating.engines
[options]
# include tests for python3 setup.py test (needed when creating
# source distributions on python2 too so that they work on python3)
packages =
genshi
genshi.filters
genshi.template
genshi.tests
genshi.filters.tests
genshi.template.tests
genshi.template.tests.templates
install_requires =
six
setup_requires =
setuptools
[options.entry_points]
babel.extractors =
genshi = genshi.filters.i18n:extract[i18n]
python.templating.engines =
genshi = genshi.template.plugin:MarkupTemplateEnginePlugin[plugin]
genshi-markup = genshi.template.plugin:MarkupTemplateEnginePlugin[plugin]
genshi-text = genshi.template.plugin:TextTemplateEnginePlugin[plugin]
[options.extras_require]
i18n = Babel>=0.8
plugin = setuptools>=0.6a2
|