annotate setup.py @ 11:10c80c490c6e trunk

Added setup configuration for doing coverage reporting with Bitten.
author cmlenz
date Sun, 04 Jun 2006 14:05:18 +0000
parents 49364e784c47
children b4f78c05e5c9
rev   line source
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
1 #!/usr/bin/env python
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
2 # -*- coding: utf-8 -*-
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
3 #
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
4 # Copyright (C) 2006 Christopher Lenz
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
5 # All rights reserved.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
6 #
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
7 # This software is licensed as described in the file COPYING, which
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
8 # you should have received as part of this distribution. The terms
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
9 # are also available at http://trac.edgewall.com/license.html.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
10 #
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
11 # This software consists of voluntary contributions made by many
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
12 # individuals. For the exact contribution history, see the revision
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
13 # history and logs, available at http://projects.edgewall.com/trac/.
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
14
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
15 from setuptools import setup, find_packages
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
16
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
17 setup(
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
18 name='Markup', version='0.1',
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
19 description='Toolkit for stream-based generation of markup for the web',
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
20 author='Christopher Lenz', author_email='cmlenz@gmx.net',
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
21 license='BSD', url='http://markup.cmlenz.net/',
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
22 packages=find_packages(exclude=['*.tests*']),
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
23 test_suite = 'markup.tests.suite',
4
49364e784c47 Added first stab of an implementation of the !TurboGears [http://www.turbogears.org/docs/plugins/template.html plugin API for template engines], and also a !TurboGears-based example using this plugin. Both written by Matt Good.
cmlenz
parents: 1
diff changeset
24 zip_safe = True,
49364e784c47 Added first stab of an implementation of the !TurboGears [http://www.turbogears.org/docs/plugins/template.html plugin API for template engines], and also a !TurboGears-based example using this plugin. Both written by Matt Good.
cmlenz
parents: 1
diff changeset
25 entry_points = """
49364e784c47 Added first stab of an implementation of the !TurboGears [http://www.turbogears.org/docs/plugins/template.html plugin API for template engines], and also a !TurboGears-based example using this plugin. Both written by Matt Good.
cmlenz
parents: 1
diff changeset
26 [python.templating.engines]
49364e784c47 Added first stab of an implementation of the !TurboGears [http://www.turbogears.org/docs/plugins/template.html plugin API for template engines], and also a !TurboGears-based example using this plugin. Both written by Matt Good.
cmlenz
parents: 1
diff changeset
27 markup = markup.plugin:TemplateEnginePlugin
49364e784c47 Added first stab of an implementation of the !TurboGears [http://www.turbogears.org/docs/plugins/template.html plugin API for template engines], and also a !TurboGears-based example using this plugin. Both written by Matt Good.
cmlenz
parents: 1
diff changeset
28 """,
1
5479aae32f5a Initial import.
cmlenz
parents:
diff changeset
29 )
Copyright (C) 2012-2017 Edgewall Software