Edgewall Software

source: tags/0.2.0/setup.py

Last change on this file was 239, checked in by cmlenz, 17 years ago

Fixed version number on 0.2.0 release tag.

  • Property svn:executable set to *
File size: 2.0 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4# Copyright (C) 2006 Edgewall Software
5# All rights reserved.
6#
7# This software is licensed as described in the file COPYING, which
8# you should have received as part of this distribution. The terms
9# are also available at http://markup.edgewall.org/wiki/License.
10#
11# This software consists of voluntary contributions made by many
12# individuals. For the exact contribution history, see the revision
13# history and logs, available at http://markup.edgewall.org/log/.
14
15try:
16    from setuptools import setup
17except ImportError:
18    from distutils.core import setup
19
20setup(
21    name = 'Markup',
22    version = '0.2.0',
23    description = 'Toolkit for stream-based generation of markup for the web',
24    long_description = \
25'''Markup is a Python library that provides an integrated set of components for
26parsing, generating, and processing HTML or XML content in a uniform manner.
27The 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
35    classifiers = [
36        'Development Status :: 4 - Beta',
37        'Environment :: Web Environment',
38        'Intended Audience :: Developers',
39        'License :: OSI Approved :: BSD License',
40        'Operating System :: OS Independent',
41        'Programming Language :: Python',
42        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
43        'Topic :: Software Development :: Libraries :: Python Modules',
44        'Topic :: Text Processing :: Markup :: HTML',
45        'Topic :: Text Processing :: Markup :: XML'
46    ],
47    packages=['markup'],
48    test_suite = 'markup.tests.suite',
49
50    extras_require = {'plugin': ['setuptools>=0.6a2']},
51    entry_points = """
52    [python.templating.engines]
53    markup = markup.plugin:TemplateEnginePlugin[plugin]
54    """,
55)
Note: See TracBrowser for help on using the repository browser.