Edgewall Software

source: tags/0.1.0/setup.py

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

Fixed version number on 0.1.0 release tag.

  • Property svn:executable set to *
File size: 1.6 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, find_packages
17except ImportError:
18    from distutils.core import setup
19
20setup(
21    name='Markup', version='0.1.0',
22    description='Toolkit for stream-based generation of markup for the web',
23    author='Edgewall Software', author_email='info@edgewall.org',
24    license='BSD', url='http://markup.edgewall.org/',
25    download_url='http://markup.edgewall.org/wiki/MarkupDownload',
26    classifiers = [
27        'Development Status :: 4 - Beta',
28        'Environment :: Web Environment',
29        'Intended Audience :: Developers',
30        'License :: OSI Approved :: BSD License',
31        'Operating System :: OS Independent',
32        'Programming Language :: Python',
33        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
34        'Topic :: Software Development :: Libraries :: Python Modules',
35        'Topic :: Text Processing :: Markup :: HTML',
36        'Topic :: Text Processing :: Markup :: XML'
37    ],
38
39    packages=['markup'],
40
41    test_suite = 'markup.tests.suite',
42    zip_safe = True,
43    entry_points = """
44    [python.templating.engines]
45    markup = markup.plugin:TemplateEnginePlugin
46    """,
47)
Note: See TracBrowser for help on using the repository browser.