forked from axiak/pyre2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·72 lines (62 loc) · 2.01 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
#!/usr/bin/env python
import sys
import os
from distutils.core import setup, Extension, Command
class TestCommand(Command):
description = 'Run packaged tests'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import tests.test as test
test.testall()
cmdclass = {'test': TestCommand}
ext_files = []
if '--cython' in sys.argv[1:]:
# Using Cython
sys.argv.remove('--cython')
from Cython.Distutils import build_ext
cmdclass['build_ext'] = build_ext
ext_files.append("src/re2.pyx")
else:
# Building from C
ext_files.append("src/re2.cpp")
# Locate the re2 module
_re2_prefixes = [
'/usr',
'/usr/local',
'/opt/',
]
for re2_prefix in _re2_prefixes:
if os.path.exists(os.path.join(re2_prefix, "include", "re2")):
break
else:
raise OSError("Cannot find RE2 library. Please install it from http://code.google.com/p/re2/wiki/Install")
setup(
name="re2",
version="0.2.8",
description="Python wrapper for Google's RE2 using Cython",
author="Mike Axiak",
license="New BSD License",
author_email = "mike@axiak.net",
url = "http://github.com/axiak/pyre2/",
ext_modules = [Extension("re2",
ext_files,
language="c++",
include_dirs=[os.path.join(re2_prefix, "include", "re2")],
libraries=["re2"],
library_dirs=[os.path.join(re2_prefix, "lib")],
runtime_library_dirs=[os.path.join(re2_prefix, "lib")],
)],
cmdclass=cmdclass,
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Cython',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)