-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·160 lines (138 loc) · 4.85 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2006-2010 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://genshi.edgewall.org/wiki/License.
#
# This software consists of voluntary contributions made by many
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://genshi.edgewall.org/log/.
from distutils.cmd import Command
from distutils.command.build_ext import build_ext
from distutils.errors import CCompilerError, DistutilsPlatformError
import doctest
from glob import glob
import os
try:
from setuptools import setup, Extension, Feature
from setuptools.command.bdist_egg import bdist_egg
except ImportError:
from distutils.core import setup, Extension
Feature = None
bdist_egg = None
import sys
sys.path.append(os.path.join('doc', 'common'))
try:
from doctools import build_doc, test_doc
except ImportError:
build_doc = test_doc = None
_speedup_available = False
class optional_build_ext(build_ext):
# This class allows C extension building to fail.
def run(self):
try:
build_ext.run(self)
except DistutilsPlatformError:
_etype, e, _tb = sys.exc_info()
self._unavailable(e)
def build_extension(self, ext):
try:
build_ext.build_extension(self, ext)
global _speedup_available
_speedup_available = True
except CCompilerError:
_etype, e, _tb = sys.exc_info()
self._unavailable(e)
def _unavailable(self, exc):
print('*' * 70)
print("""WARNING:
An optional C extension could not be compiled, speedups will not be
available.""")
print('*' * 70)
print(exc)
if Feature:
speedups = Feature(
"optional C speed-enhancements",
standard = False,
ext_modules = [
Extension('genshi._speedups', ['genshi/_speedups.c']),
],
)
else:
speedups = None
# Setuptools need some help figuring out if the egg is "zip_safe" or not
if bdist_egg:
class my_bdist_egg(bdist_egg):
def zip_safe(self):
return not _speedup_available and bdist_egg.zip_safe(self)
cmdclass = {'build_doc': build_doc, 'test_doc': test_doc,
'build_ext': optional_build_ext}
if bdist_egg:
cmdclass['bdist_egg'] = my_bdist_egg
# Use 2to3 if we're running under Python 3 (with Distribute)
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
extra['convert_2to3_doctests'] = []
extra['use_2to3_fixers'] = ['fixes']
# include tests for python3 setup.py test
packages = [
'genshi', 'genshi.filters', 'genshi.template',
'genshi.tests', 'genshi.filters.tests',
'genshi.template.tests',
'genshi.template.tests.templates',
]
# Install genshi template tests
extra['include_package_data'] = True
else:
packages = ['genshi', 'genshi.filters', 'genshi.template']
setup(
name = 'Genshi',
version = '0.7',
description = 'A toolkit for generation of output for the web',
long_description = \
"""Genshi is a Python library that provides an integrated set of
components for parsing, generating, and processing HTML, XML or
other textual content for output generation on the web. The major
feature is a template language, which is heavily inspired by Kid.""",
author = 'Edgewall Software',
author_email = 'info@edgewall.org',
license = 'BSD',
url = 'http://genshi.edgewall.org/',
download_url = 'http://genshi.edgewall.org/wiki/Download',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML'
],
keywords = ['python.templating.engines'],
packages = packages,
test_suite = 'genshi.tests.suite',
extras_require = {
'i18n': ['Babel>=0.8'],
'plugin': ['setuptools>=0.6a2']
},
entry_points = """
[babel.extractors]
genshi = genshi.filters.i18n:extract[i18n]
[python.templating.engines]
genshi = genshi.template.plugin:MarkupTemplateEnginePlugin[plugin]
genshi-markup = genshi.template.plugin:MarkupTemplateEnginePlugin[plugin]
genshi-text = genshi.template.plugin:TextTemplateEnginePlugin[plugin]
""",
features = {'speedups': speedups},
cmdclass = cmdclass,
**extra
)