comparison setup.py @ 452:a89368769b82 trunk

Add `filters` package in `setup.py`.
author cmlenz
date Mon, 16 Apr 2007 13:48:57 +0000
parents a1955bc39924
children d799e17d3efe 190ffd36b6bb
comparison
equal deleted inserted replaced
451:4183fd29fa4e 452:a89368769b82
82 setup( 82 setup(
83 name = 'Genshi', 83 name = 'Genshi',
84 version = '0.4', 84 version = '0.4',
85 description = 'A toolkit for stream-based generation of output for the web', 85 description = 'A toolkit for stream-based generation of output for the web',
86 long_description = \ 86 long_description = \
87 """Genshi is a Python library that provides an integrated set of components 87 """Genshi is a Python library that provides an integrated set of
88 for parsing, generating, and processing HTML, XML or other textual content for 88 components for parsing, generating, and processing HTML, XML or
89 output generation on the web. The major feature is a template language, which 89 other textual content for output generation on the web. The major
90 is heavily inspired by Kid.""", 90 feature is a template language, which is heavily inspired by Kid.""",
91 author = 'Edgewall Software', 91 author = 'Edgewall Software',
92 author_email = 'info@edgewall.org', 92 author_email = 'info@edgewall.org',
93 license = 'BSD', 93 license = 'BSD',
94 url = 'http://genshi.edgewall.org/', 94 url = 'http://genshi.edgewall.org/',
95 download_url = 'http://genshi.edgewall.org/wiki/Download', 95 download_url = 'http://genshi.edgewall.org/wiki/Download',
106 'Topic :: Software Development :: Libraries :: Python Modules', 106 'Topic :: Software Development :: Libraries :: Python Modules',
107 'Topic :: Text Processing :: Markup :: HTML', 107 'Topic :: Text Processing :: Markup :: HTML',
108 'Topic :: Text Processing :: Markup :: XML' 108 'Topic :: Text Processing :: Markup :: XML'
109 ], 109 ],
110 keywords = ['python.templating.engines'], 110 keywords = ['python.templating.engines'],
111 packages = ['genshi', 'genshi.template'], 111 packages = ['genshi', 'genshi.filters', 'genshi.template'],
112 test_suite = 'genshi.tests.suite', 112 test_suite = 'genshi.tests.suite',
113 113
114 extras_require = {'plugin': ['setuptools>=0.6a2']}, 114 extras_require = {'plugin': ['setuptools>=0.6a2']},
115 entry_points = """ 115 entry_points = """
116 [python.templating.engines] 116 [python.templating.engines]
Copyright (C) 2012-2017 Edgewall Software