forked from andreasvc/pyre2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·129 lines (114 loc) · 4.04 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
import io
import os
import re
import sys
import platform
from distutils.core import setup, Extension, Command
MINIMUM_CYTHON_VERSION = '0.20'
BASE_DIR = os.path.dirname(__file__)
PY2 = sys.version_info[0] == 2
DEBUG = False
class TestCommand(Command):
description = 'Run packaged tests'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from tests import re2_test
re2_test.testall()
def majorminor(version):
return [int(x) for x in re.match(r'([0-9]+)\.([0-9]+)', version).groups()]
cmdclass = {'test': TestCommand}
ext_files = []
if '--cython' in sys.argv or not os.path.exists('src/re2.cpp'):
# Using Cython
try:
sys.argv.remove('--cython')
except ValueError:
pass
from Cython.Compiler.Main import Version
if majorminor(MINIMUM_CYTHON_VERSION) >= majorminor(Version.version):
raise ValueError('Cython is version %s, but needs to be at least %s.'
% (Version.version, MINIMUM_CYTHON_VERSION))
from Cython.Distutils import build_ext
from Cython.Build import cythonize
cmdclass['build_ext'] = build_ext
use_cython = True
else:
# Building from C
ext_files.append('src/re2.cpp')
use_cython = False
# Locate the re2 module
_re2_prefixes = ['/usr', '/usr/local', '/opt/', '/opt/local', os.environ['HOME'] + '/.local']
re2_prefix = ''
for a in _re2_prefixes:
if os.path.exists(os.path.join(a, 'include', 're2')):
re2_prefix = a
break
def get_long_description():
with io.open(os.path.join(BASE_DIR, 'README.rst'), encoding='utf8') as inp:
return inp.read()
def get_authors():
author_re = re.compile(r'^\s*(.*?)\s+<.*?\@.*?>', re.M)
authors_f = open(os.path.join(BASE_DIR, 'AUTHORS'))
authors = [match.group(1) for match in author_re.finditer(authors_f.read())]
authors_f.close()
return ', '.join(authors)
def main():
os.environ['GCC_COLORS'] = 'auto'
include_dirs = [os.path.join(re2_prefix, 'include')] if re2_prefix else []
libraries = ['re2']
library_dirs = [os.path.join(re2_prefix, 'lib')] if re2_prefix else []
runtime_library_dirs = [os.path.join(re2_prefix, 'lib')
] if re2_prefix else []
extra_compile_args = ['-O0', '-g'] if DEBUG else [
'-O3', '-march=native', '-DNDEBUG']
# Older GCC version such as on CentOS 6 do not support C++11
if not platform.python_compiler().startswith('GCC 4.4.7'):
extra_compile_args.append('-std=c++11')
ext_modules = [
Extension(
're2',
sources=['src/re2.pyx' if use_cython else 'src/re2.cpp'],
language='c++',
include_dirs=include_dirs,
libraries=libraries,
library_dirs=library_dirs,
runtime_library_dirs=runtime_library_dirs,
extra_compile_args=['-DPY2=%d' % PY2] + extra_compile_args,
extra_link_args=['-g'] if DEBUG else ['-DNDEBUG'],
)]
if use_cython:
ext_modules = cythonize(
ext_modules,
language_level=3,
annotate=True,
compiler_directives={
'embedsignature': True,
'warn.unused': True,
'warn.unreachable': True,
})
setup(
name='re2',
version='0.2.23',
description='Python wrapper for Google\'s RE2 using Cython',
long_description=get_long_description(),
author=get_authors(),
license='New BSD License',
author_email = 'mike@axiak.net',
url = 'http://github.com/axiak/pyre2/',
ext_modules = ext_modules,
cmdclass=cmdclass,
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Cython',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3.3',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
if __name__ == '__main__':
main()