comparison setup.py @ 215:e92135672812

A couple of minor XPath fixes.
author cmlenz
date Fri, 01 Sep 2006 13:45:42 +0000
parents 7f2a267837d0
children 24757b771651
comparison
equal deleted inserted replaced
214:813b7115d27f 215:e92135672812
20 setup( 20 setup(
21 name = 'Markup', 21 name = 'Markup',
22 version = '0.3', 22 version = '0.3',
23 description = 'Toolkit for stream-based generation of markup for the web', 23 description = 'Toolkit for stream-based generation of markup for the web',
24 long_description = \ 24 long_description = \
25 '''Markup is a Python library that provides an integrated set of components for 25 """Markup is a Python library that provides an integrated set of components for
26 parsing, generating, and processing HTML or XML content in a uniform manner. 26 parsing, generating, and processing HTML or XML content in a uniform manner.
27 The major feature is a template language that is heavily inspired by Kid.''', 27 The major feature is a template language that is heavily inspired by Kid.""",
28 author = 'Edgewall Software', 28 author = 'Edgewall Software',
29 author_email = 'info@edgewall.org', 29 author_email = 'info@edgewall.org',
30 license = 'BSD', 30 license = 'BSD',
31 url = 'http://markup.edgewall.org/', 31 url = 'http://markup.edgewall.org/',
32 download_url = 'http://markup.edgewall.org/wiki/MarkupDownload', 32 download_url = 'http://markup.edgewall.org/wiki/MarkupDownload',
42 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 42 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
43 'Topic :: Software Development :: Libraries :: Python Modules', 43 'Topic :: Software Development :: Libraries :: Python Modules',
44 'Topic :: Text Processing :: Markup :: HTML', 44 'Topic :: Text Processing :: Markup :: HTML',
45 'Topic :: Text Processing :: Markup :: XML' 45 'Topic :: Text Processing :: Markup :: XML'
46 ], 46 ],
47 packages=['markup'], 47 keywords = ['python.templating.engines'],
48 packages = ['markup'],
48 test_suite = 'markup.tests.suite', 49 test_suite = 'markup.tests.suite',
49 50
50 extras_require = {'plugin': ['setuptools>=0.6a2']}, 51 extras_require = {'plugin': ['setuptools>=0.6a2']},
51 entry_points = """ 52 entry_points = """
52 [python.templating.engines] 53 [python.templating.engines]
Copyright (C) 2012-2017 Edgewall Software