comparison setup.py @ 148:a0a52cf4e4de

Added changelog file, plus some README and setup tweaks.
author cmlenz
date Tue, 15 Aug 2006 14:41:08 +0000
parents 56d534eb53f9
children 8709e8fbc6ef 7f2a267837d0
comparison
equal deleted inserted replaced
147:f7fb556f2678 148:a0a52cf4e4de
16 from setuptools import setup 16 from setuptools import setup
17 except ImportError: 17 except ImportError:
18 from distutils.core import setup 18 from distutils.core import setup
19 19
20 setup( 20 setup(
21 name='Markup', version='0.2', 21 name = 'Markup',
22 description='Toolkit for stream-based generation of markup for the web', 22 version = '0.2',
23 author='Edgewall Software', author_email='info@edgewall.org', 23 description = 'Toolkit for stream-based generation of markup for the web',
24 license='BSD', url='http://markup.edgewall.org/', 24 long_description = \
25 download_url='http://markup.edgewall.org/wiki/MarkupDownload', 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.
27 The major feature is a template language that is heavily inspired by Kid.''',
28 author = 'Edgewall Software',
29 author_email = 'info@edgewall.org',
30 license = 'BSD',
31 url = 'http://markup.edgewall.org/',
32 download_url = 'http://markup.edgewall.org/wiki/MarkupDownload',
33 zip_safe = True,
34
26 classifiers = [ 35 classifiers = [
27 'Development Status :: 4 - Beta', 36 'Development Status :: 4 - Beta',
28 'Environment :: Web Environment', 37 'Environment :: Web Environment',
29 'Intended Audience :: Developers', 38 'Intended Audience :: Developers',
30 'License :: OSI Approved :: BSD License', 39 'License :: OSI Approved :: BSD License',
33 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 42 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
34 'Topic :: Software Development :: Libraries :: Python Modules', 43 'Topic :: Software Development :: Libraries :: Python Modules',
35 'Topic :: Text Processing :: Markup :: HTML', 44 'Topic :: Text Processing :: Markup :: HTML',
36 'Topic :: Text Processing :: Markup :: XML' 45 'Topic :: Text Processing :: Markup :: XML'
37 ], 46 ],
47 packages=['markup'],
48 test_suite = 'markup.tests.suite',
38 49
39 packages=['markup'], 50 extras_require = {'plugin': ['setuptools>=0.6a2']},
40
41 test_suite = 'markup.tests.suite',
42 zip_safe = True,
43 entry_points = """ 51 entry_points = """
44 [python.templating.engines] 52 [python.templating.engines]
45 markup = markup.plugin:TemplateEnginePlugin 53 markup = markup.plugin:TemplateEnginePlugin[plugin]
46 """, 54 """,
47 ) 55 )
Copyright (C) 2012-2017 Edgewall Software