annotate setup.py @ 896:248d6671a7e1

Fix for infinite recursion when parsing argument names from tuples. Closes #383.
author cmlenz
date Wed, 21 Apr 2010 22:02:28 +0000
parents 6148ec774d7a
children 85e4678337cf
rev   line source
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
1 #!/usr/bin/env python
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
2 # -*- coding: utf-8 -*-
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
3 #
719
09a90feb9269 Fix copyright years.
cmlenz
parents: 673
diff changeset
4 # Copyright (C) 2006-2008 Edgewall Software
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
5 # All rights reserved.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
6 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
7 # This software is licensed as described in the file COPYING, which
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
8 # you should have received as part of this distribution. The terms
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 215
diff changeset
9 # are also available at http://genshi.edgewall.org/wiki/License.
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
10 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
11 # This software consists of voluntary contributions made by many
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
12 # individuals. For the exact contribution history, see the revision
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 215
diff changeset
13 # history and logs, available at http://genshi.edgewall.org/log/.
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
14
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 336
diff changeset
15 from distutils.cmd import Command
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
16 from distutils.command.build_ext import build_ext
673
3a949bcaaf3d Ignore missing compiler errors on Windows. Fixes #174 and #165.
athomas
parents: 599
diff changeset
17 from distutils.errors import CCompilerError, DistutilsPlatformError
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 336
diff changeset
18 import doctest
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 336
diff changeset
19 from glob import glob
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 336
diff changeset
20 import os
84
894576e2b813 Make dependency of the setup script on setuptools optional.
cmlenz
parents: 66
diff changeset
21 try:
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
22 from setuptools import setup, Extension, Feature
786
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
23 from setuptools.command.bdist_egg import bdist_egg
84
894576e2b813 Make dependency of the setup script on setuptools optional.
cmlenz
parents: 66
diff changeset
24 except ImportError:
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
25 from distutils.core import setup, Extension
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
26 Feature = None
786
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
27 bdist_egg = None
426
a0711da164ac Add epydoc-based API doc generation to the build.
cmlenz
parents: 394
diff changeset
28 import sys
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
29
585
e0d57ab9b0be Documentation stuff moved to a common shared repository.
cmlenz
parents: 541
diff changeset
30 sys.path.append(os.path.join('doc', 'common'))
e0d57ab9b0be Documentation stuff moved to a common shared repository.
cmlenz
parents: 541
diff changeset
31 try:
e0d57ab9b0be Documentation stuff moved to a common shared repository.
cmlenz
parents: 541
diff changeset
32 from doctools import build_doc, test_doc
e0d57ab9b0be Documentation stuff moved to a common shared repository.
cmlenz
parents: 541
diff changeset
33 except ImportError:
e0d57ab9b0be Documentation stuff moved to a common shared repository.
cmlenz
parents: 541
diff changeset
34 build_doc = test_doc = None
394
ebc7c1a3bc4d Minor doc fixes.
cmlenz
parents: 382
diff changeset
35
786
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
36 _speedup_available = False
394
ebc7c1a3bc4d Minor doc fixes.
cmlenz
parents: 382
diff changeset
37
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
38 class optional_build_ext(build_ext):
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
39 # This class allows C extension building to fail.
673
3a949bcaaf3d Ignore missing compiler errors on Windows. Fixes #174 and #165.
athomas
parents: 599
diff changeset
40 def run(self):
3a949bcaaf3d Ignore missing compiler errors on Windows. Fixes #174 and #165.
athomas
parents: 599
diff changeset
41 try:
3a949bcaaf3d Ignore missing compiler errors on Windows. Fixes #174 and #165.
athomas
parents: 599
diff changeset
42 build_ext.run(self)
795
d282c6c0133e Apply some patches for build from #165.
cmlenz
parents: 786
diff changeset
43 except DistutilsPlatformError, e:
d282c6c0133e Apply some patches for build from #165.
cmlenz
parents: 786
diff changeset
44 self._unavailable(e)
673
3a949bcaaf3d Ignore missing compiler errors on Windows. Fixes #174 and #165.
athomas
parents: 599
diff changeset
45
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
46 def build_extension(self, ext):
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
47 try:
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
48 build_ext.build_extension(self, ext)
786
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
49 global _speedup_available
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
50 _speedup_available = True
795
d282c6c0133e Apply some patches for build from #165.
cmlenz
parents: 786
diff changeset
51 except CCompilerError, e:
d282c6c0133e Apply some patches for build from #165.
cmlenz
parents: 786
diff changeset
52 self._unavailable(e)
673
3a949bcaaf3d Ignore missing compiler errors on Windows. Fixes #174 and #165.
athomas
parents: 599
diff changeset
53
795
d282c6c0133e Apply some patches for build from #165.
cmlenz
parents: 786
diff changeset
54 def _unavailable(self, exc):
853
4376010bb97e Convert a bunch of print statements to py3k compatible syntax.
cmlenz
parents: 795
diff changeset
55 print('*' * 70)
4376010bb97e Convert a bunch of print statements to py3k compatible syntax.
cmlenz
parents: 795
diff changeset
56 print("""WARNING:
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
57 An optional C extension could not be compiled, speedups will not be
853
4376010bb97e Convert a bunch of print statements to py3k compatible syntax.
cmlenz
parents: 795
diff changeset
58 available.""")
4376010bb97e Convert a bunch of print statements to py3k compatible syntax.
cmlenz
parents: 795
diff changeset
59 print('*' * 70)
4376010bb97e Convert a bunch of print statements to py3k compatible syntax.
cmlenz
parents: 795
diff changeset
60 print(exc)
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
61
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
62
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
63 if Feature:
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
64 speedups = Feature(
866
6148ec774d7a Build without speedups by default.
cmlenz
parents: 853
diff changeset
65 "optional C speed-enhancements",
6148ec774d7a Build without speedups by default.
cmlenz
parents: 853
diff changeset
66 standard = False,
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
67 ext_modules = [
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
68 Extension('genshi._speedups', ['genshi/_speedups.c']),
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
69 ],
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
70 )
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
71 else:
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
72 speedups = None
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
73
786
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
74
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
75 # Setuptools need some help figuring out if the egg is "zip_safe" or not
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
76 if bdist_egg:
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
77 class my_bdist_egg(bdist_egg):
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
78 def zip_safe(self):
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
79 return not _speedup_available and bdist_egg.zip_safe(self)
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
80
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
81
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
82 cmdclass = {'build_doc': build_doc, 'test_doc': test_doc,
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
83 'build_ext': optional_build_ext}
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
84 if bdist_egg:
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
85 cmdclass['bdist_egg'] = my_bdist_egg
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
86
795
d282c6c0133e Apply some patches for build from #165.
cmlenz
parents: 786
diff changeset
87
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
88 setup(
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 215
diff changeset
89 name = 'Genshi',
749
3a456053fa1a Bump up version number on trunk.
cmlenz
parents: 719
diff changeset
90 version = '0.6',
599
e4ec94fcb0c0 Get rid of the previously overemphasized term ?stream-based? in the tagline, which seems to turn some people off.
cmlenz
parents: 596
diff changeset
91 description = 'A toolkit for generation of output for the web',
148
a0a52cf4e4de Added changelog file, plus some README and setup tweaks.
cmlenz
parents: 145
diff changeset
92 long_description = \
452
0ed55216e8f2 Add `filters` package in `setup.py`.
cmlenz
parents: 426
diff changeset
93 """Genshi is a Python library that provides an integrated set of
0ed55216e8f2 Add `filters` package in `setup.py`.
cmlenz
parents: 426
diff changeset
94 components for parsing, generating, and processing HTML, XML or
0ed55216e8f2 Add `filters` package in `setup.py`.
cmlenz
parents: 426
diff changeset
95 other textual content for output generation on the web. The major
0ed55216e8f2 Add `filters` package in `setup.py`.
cmlenz
parents: 426
diff changeset
96 feature is a template language, which is heavily inspired by Kid.""",
148
a0a52cf4e4de Added changelog file, plus some README and setup tweaks.
cmlenz
parents: 145
diff changeset
97 author = 'Edgewall Software',
a0a52cf4e4de Added changelog file, plus some README and setup tweaks.
cmlenz
parents: 145
diff changeset
98 author_email = 'info@edgewall.org',
a0a52cf4e4de Added changelog file, plus some README and setup tweaks.
cmlenz
parents: 145
diff changeset
99 license = 'BSD',
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 215
diff changeset
100 url = 'http://genshi.edgewall.org/',
256
3ea3977c8c4d Fix download URL.
cmlenz
parents: 255
diff changeset
101 download_url = 'http://genshi.edgewall.org/wiki/Download',
148
a0a52cf4e4de Added changelog file, plus some README and setup tweaks.
cmlenz
parents: 145
diff changeset
102
124
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
103 classifiers = [
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
104 'Development Status :: 4 - Beta',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
105 'Environment :: Web Environment',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
106 'Intended Audience :: Developers',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
107 'License :: OSI Approved :: BSD License',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
108 'Operating System :: OS Independent',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
109 'Programming Language :: Python',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
110 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
111 'Topic :: Software Development :: Libraries :: Python Modules',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
112 'Topic :: Text Processing :: Markup :: HTML',
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
113 'Topic :: Text Processing :: Markup :: XML'
9a2acebe84f7 Add Trove classifiers and download URL to `setup.py`.
cmlenz
parents: 84
diff changeset
114 ],
215
e92135672812 A couple of minor XPath fixes.
cmlenz
parents: 189
diff changeset
115 keywords = ['python.templating.engines'],
452
0ed55216e8f2 Add `filters` package in `setup.py`.
cmlenz
parents: 426
diff changeset
116 packages = ['genshi', 'genshi.filters', 'genshi.template'],
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 215
diff changeset
117 test_suite = 'genshi.tests.suite',
84
894576e2b813 Make dependency of the setup script on setuptools optional.
cmlenz
parents: 66
diff changeset
118
530
588ba862c0f7 Add extra for I18n.
cmlenz
parents: 528
diff changeset
119 extras_require = {
588ba862c0f7 Add extra for I18n.
cmlenz
parents: 528
diff changeset
120 'i18n': ['Babel>=0.8'],
588ba862c0f7 Add extra for I18n.
cmlenz
parents: 528
diff changeset
121 'plugin': ['setuptools>=0.6a2']
588ba862c0f7 Add extra for I18n.
cmlenz
parents: 528
diff changeset
122 },
4
f8612f05af99 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
123 entry_points = """
528
f38ce008ab0a Integrated [http://babel.edgewall.org/ Babel] message extraction plugin, and added I18n doc page.
cmlenz
parents: 508
diff changeset
124 [babel.extractors]
530
588ba862c0f7 Add extra for I18n.
cmlenz
parents: 528
diff changeset
125 genshi = genshi.filters.i18n:extract[i18n]
528
f38ce008ab0a Integrated [http://babel.edgewall.org/ Babel] message extraction plugin, and added I18n doc page.
cmlenz
parents: 508
diff changeset
126
4
f8612f05af99 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
127 [python.templating.engines]
336
5f2c7782cd8a Refactoring: `genshi.template` is now a package, it was getting way to crowded in that file.
cmlenz
parents: 265
diff changeset
128 genshi = genshi.template.plugin:MarkupTemplateEnginePlugin[plugin]
5f2c7782cd8a Refactoring: `genshi.template` is now a package, it was getting way to crowded in that file.
cmlenz
parents: 265
diff changeset
129 genshi-markup = genshi.template.plugin:MarkupTemplateEnginePlugin[plugin]
5f2c7782cd8a Refactoring: `genshi.template` is now a package, it was getting way to crowded in that file.
cmlenz
parents: 265
diff changeset
130 genshi-text = genshi.template.plugin:TextTemplateEnginePlugin[plugin]
4
f8612f05af99 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
131 """,
382
d7da3fba7faf * Added documentation for the various stream event kinds.
cmlenz
parents: 336
diff changeset
132
541
4a53763b3948 Merged cspeedups branch into trunk.
cmlenz
parents: 530
diff changeset
133 features = {'speedups': speedups},
786
d30a27266b45 Set zip_safe to False if the c speedup module is successfully built. Closes #252.
jonas
parents: 749
diff changeset
134 cmdclass = cmdclass
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
135 )
Copyright (C) 2012-2017 Edgewall Software