forked from ovalhub/pyicu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
147 lines (127 loc) · 4.55 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
import os, sys
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
try:
from subprocess import check_output
except ImportError:
from subprocess import Popen, PIPE
def check_output(*popenargs):
process = Popen(stdout=PIPE, *popenargs)
output, ignore = process.communicate()
retcode = process.poll()
if retcode:
raise Exception((retcode, popenargs[0], output))
return output
VERSION = '1.9.5'
ICU_VERSION = 52.1
INCLUDES = {
'darwin': ['/usr/local/include'],
'linux': [],
'freebsd': ['/usr/local/include'],
'win32': ['c:/icu/include'],
'sunos5': [],
}
CFLAGS = {
'darwin': ['-DPYICU_VER="%s"' %(VERSION)],
'linux': ['-DPYICU_VER="%s"' %(VERSION)],
'freebsd': ['-DPYICU_VER="%s"' %(VERSION)],
'win32': ['/Zc:wchar_t', '/EHsc', '/DPYICU_VER=\\"%s\\"' %(VERSION)],
'sunos5': ['-DPYICU_VER="%s"' %(VERSION)],
}
# added to CFLAGS when setup is invoked with --debug
DEBUG_CFLAGS = {
'darwin': ['-O0', '-g', '-DDEBUG'],
'linux': ['-O0', '-g', '-DDEBUG'],
'freebsd': ['-O0', '-g', '-DDEBUG'],
'win32': ['/Od', '/DDEBUG'],
'sunos5': ['-DDEBUG'],
}
LFLAGS = {
'darwin': ['-L/usr/local/lib'],
'linux': [],
'freebsd': ['-L/usr/local/lib'],
'win32': ['/LIBPATH:c:/icu/lib'],
'sunos5': [],
}
LIBRARIES = {
'darwin': ['icui18n', 'icuuc', 'icudata'],
'linux': ['icui18n', 'icuuc', 'icudata'],
'freebsd': ['icui18n', 'icuuc', 'icudata'],
'win32': ['icuin', 'icuuc', 'icudt'],
'sunos5': ['icui18n', 'icuuc', 'icudata'],
}
platform = sys.platform
if platform.startswith(('linux', 'gnu')):
platform = 'linux'
elif platform.startswith('freebsd'):
platform = 'freebsd'
if 'PYICU_INCLUDES' in os.environ:
_includes = os.environ['PYICU_INCLUDES'].split(os.pathsep)
else:
_includes = INCLUDES[platform]
if 'PYICU_CFLAGS' in os.environ:
_cflags = os.environ['PYICU_CFLAGS'].split(os.pathsep)
else:
_cflags = CFLAGS[platform]
if '--debug' in sys.argv:
if 'PYICU_DEBUG_CFLAGS' in os.environ:
_cflags += os.environ['PYICU_DEBUG_CFLAGS'].split(os.pathsep)
else:
_cflags += DEBUG_CFLAGS[platform]
if 'PYICU_LFLAGS' in os.environ:
_lflags = os.environ['PYICU_LFLAGS'].split(os.pathsep)
else:
_lflags = LFLAGS[platform]
if 'PYICU_LIBRARIES' in os.environ:
_libraries = os.environ['PYICU_LIBRARIES'].split(os.pathsep)
elif ((sys.version_info >= (3,) and str(ICU_VERSION, 'ascii') < '58') or
(sys.version_info < (3,) and ICU_VERSION < '58')):
_libraries = LIBRARIES[platform][:] + ['icule']
else:
_libraries = LIBRARIES[platform]
if sys.version_info < (2, 4):
def sorted(iterable, *args, **kwargs):
iterable = list(iterable)
iterable.sort(*args, **kwargs)
return iterable
setup(name="PyICU",
description='Python extension wrapping the ICU C++ API',
long_description=open('README.md').read(),
version=VERSION,
test_suite="test",
url='https://github.com/ovalhub/pyicu',
author='Andi Vajda',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Localization',
'Topic :: Software Development :: Internationalization'],
ext_modules=[Extension('_icu',
[filename for filename in sorted(os.listdir(os.curdir))
if filename.endswith('.cpp')],
include_dirs=_includes,
extra_compile_args=_cflags,
extra_link_args=_lflags,
libraries=_libraries)],
packages=['icu'],
py_modules=['PyICU'])
if sys.version_info >= (3,):
path = os.path.join('test', '2to3.note')
if not os.path.exists(path):
from lib2to3.main import main
main("lib2to3.fixes", ['-w', '-n', '--no-diffs', 'test'])
output = open(path, 'w')
output.write('tests auto-converted by 2to3 during setup\n')
output.close()