| 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 | |
|---|
| 15 | try: |
|---|
| 16 | from setuptools import setup |
|---|
| 17 | except ImportError: |
|---|
| 18 | from distutils.core import setup |
|---|
| 19 | |
|---|
| 20 | setup( |
|---|
| 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 |
|---|
| 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 | |
|---|
| 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 | ) |
|---|