forked from stefan-jansen/zipline-reloaded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
180 lines (161 loc) · 6.17 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#!/usr/bin/env python
#
# Copyright 2014 Quantopian, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import os
from pathlib import Path
# ensure the current directory is on sys.path
# so versioneer can be imported when pip uses
# PEP 517/518 build rules.
# https://github.com/python-versioneer/python-versioneer/issues/193
sys.path.append(Path(__file__).resolve(strict=True).parent.as_posix())
import versioneer # noqa: E402
from setuptools import Extension, find_packages, setup # noqa: E402
class LazyBuildExtCommandClass(dict):
"""
Lazy command class that defers operations requiring Cython and numpy until
they've actually been downloaded and installed by setup_requires.
"""
def __contains__(self, key):
return key == "build_ext" or super(LazyBuildExtCommandClass, self).__contains__(
key
)
def __setitem__(self, key, value):
if key == "build_ext":
raise AssertionError("build_ext overridden!")
super(LazyBuildExtCommandClass, self).__setitem__(key, value)
def __getitem__(self, key):
if key != "build_ext":
return super(LazyBuildExtCommandClass, self).__getitem__(key)
from Cython.Distutils import build_ext as cython_build_ext
import numpy
# Cython_build_ext isn't a new-style class in Py2.
class build_ext(cython_build_ext, object):
"""
Custom build_ext command that lazily adds numpy's include_dir to
extensions.
"""
def build_extensions(self):
"""
Lazily append numpy's include directory to Extension includes.
This is done here rather than at module scope because setup.py
may be run before numpy has been installed, in which case
importing numpy and calling `numpy.get_include()` will fail.
"""
numpy_incl = numpy.get_include()
for ext in self.extensions:
ext.include_dirs.append(numpy_incl)
super(build_ext, self).build_extensions()
return build_ext
def window_specialization(typename):
"""Make an extension for an AdjustedArrayWindow specialization."""
return Extension(
name=f"zipline.lib._{typename}window",
sources=[f"src/zipline/lib/_{typename}window.pyx"],
depends=["src/zipline/lib/_windowtemplate.pxi"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
)
ext_options = dict(
compiler_directives=dict(profile=True, language_level="3"),
annotate=True,
)
ext_modules = [
Extension(
name="zipline.assets._assets",
sources=["src/zipline/assets/_assets.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.assets.continuous_futures",
sources=["src/zipline/assets/continuous_futures.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.lib.adjustment",
sources=["src/zipline/lib/adjustment.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.lib._factorize",
sources=["src/zipline/lib/_factorize.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
window_specialization("float64"),
window_specialization("int64"),
window_specialization("int64"),
window_specialization("uint8"),
window_specialization("label"),
Extension(
name="zipline.lib.rank",
sources=["src/zipline/lib/rank.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.data._equities",
sources=["src/zipline/data/_equities.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.data._adjustments",
sources=["src/zipline/data/_adjustments.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline._protocol",
sources=["src/zipline/_protocol.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.finance._finance_ext",
sources=["src/zipline/finance/_finance_ext.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.gens.sim_engine",
sources=["src/zipline/gens/sim_engine.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.data._minute_bar_internal",
sources=["src/zipline/data/_minute_bar_internal.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
Extension(
name="zipline.data._resample",
sources=["src/zipline/data/_resample.pyx"],
define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")],
),
]
for ext_module in ext_modules:
ext_module.cython_directives = dict(language_level="3")
version = versioneer.get_version()
setup(
version=version,
cmdclass=LazyBuildExtCommandClass(versioneer.get_cmdclass()),
entry_points={
"console_scripts": [
"zipline = zipline.__main__:main",
],
},
# packages=find_packages(include=["src/zipline"]),
ext_modules=ext_modules,
# package_dir={'': 'src'},
# packages=find_packages(where='src'),
package_data={
root.replace(os.sep, "."): ["*.pyi", "*.pyx", "*.pxi", "*.pxd"]
for root, dirnames, filenames in os.walk("src/zipline")
if "__pycache__" not in root
},
)