-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
123 lines (100 loc) · 3.78 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
#*****************************************************************************
#* setup.py
#*
#* pssparser Python extension setup file
#*****************************************************************************
import os
import sys
from setuptools import Extension, setup, find_namespace_packages
from Cython.Build import cythonize
# Bring in the Python file with settings for the Python extension
sys.path.insert(0, os.path.join(os.getcwd(), "../pssast/ext"))
import pssast_ext
pss_ext_spec = pssast_ext.ext()
print("pss_ext_spec: " + str(pss_ext_spec))
extdir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, extdir)
pssparserdir = os.path.dirname(extdir)
include_dirs=[]
include_dirs.append(extdir)
include_dirs.append(os.path.join(pssparserdir, "src"))
include_dirs.append(os.path.join(os.getcwd(), "../pssast/include/pssast"))
include_dirs.append(os.path.join(os.getcwd(), "../pssast/ext"))
include_dirs.append(os.getcwd())
library_dirs = []
library_dirs.append(os.path.join(os.getcwd(), "../src"))
library_dirs.append(os.path.join(os.getcwd(), "../pssast/lib"))
library_dirs.append(os.path.join(os.getcwd(), "../antlr4/lib"))
libraries = []
libraries.append("pssparser")
libraries.append("pssast")
#libraries.append("antlr4-runtime")
# Create a composite core.pyx file
with open(os.path.join(os.getcwd(), "core.pyx"), "w") as out:
with open(os.path.join(os.getcwd(), "../pssast/ext/pssast.pyx"), "r") as pssast:
out.write(pssast.read())
with open(os.path.join(extdir, "core.pyx"), "r") as core:
out.write(core.read())
sources = []
sources.append(os.path.join(os.getcwd(), "core.pyx"))
for f in os.listdir(extdir):
if os.path.isfile(os.path.join(extdir, f)):
path_s = os.path.splitext(f)
if path_s[1] == ".pyx":
print("Add " + f)
# sources.append(os.path.join(extdir, f))
elif path_s[1] == ".cpp":
if not os.path.isfile(os.path.join(extdir, path_s[0] + ".pyx")):
print("Add " + f)
sources.append(os.path.join(extdir, f))
for src in pss_ext_spec.sources:
path_s = os.path.splitext(src)
if path_s[1] == ".cpp":
sources.append(src)
print("sources=" + str(sources))
# TODO: depending on the platform, perform the link differently
extra_link_args=[]
extra_link_args.append(os.path.join(os.getcwd(), "../antlr4/lib/libantlr4-runtime.a"))
ext = Extension(
"pssparser.core",
sources,
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries,
extra_link_args=extra_link_args,
language="c++")
# sources = []
# include_dirs = [os.path.join(extdir, "pyiostream")]
# library_dirs = []
# libraries = []
# extra_link_args=[]
# pyiostream_ext = os.path.join(extdir, "pssparser", "iostream")
# for f in os.listdir(pyiostream_ext):
# if os.path.isfile(os.path.join(extdir, f)):
# path_s = os.path.splitext(f)
# if path_s[1] == ".pyx":
# sources.append(os.path.join(pyiostream_ext, f))
# elif path_s[1] == ".cpp":
# if not os.path.isfile(os.path.join(pyiostream_ext, path_s[0] + ".pyx")):
# sources.append(os.path.join(pyiostream_ext, f))
#
# pyiostream = Extension(
# "pssparser.iostream",
# sources,
# include_dirs=include_dirs,
# library_dirs=library_dirs,
# libraries=libraries,
# extra_link_args=extra_link_args,
# language="c++")
#extensions=[ext, pyiostream]
extensions=[ext]
setup(
name="pypssparser",
version="0.0.1",
author="Matthew Ballance",
author_email="[email protected]",
description="Provides a PSS parser and related tools",
packages=find_namespace_packages(where=os.path.join(extdir, 'src')),
package_dir={'' : os.path.join(extdir,'src')},
ext_modules=cythonize(extensions)
)