-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
217 lines (194 loc) · 5.85 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/usr/bin/env python
import os
from setuptools import setup
import sys
import cupy_setup_build
if sys.version_info[:3] == (3, 5, 0):
if not int(os.getenv('CUPY_PYTHON_350_FORCE', '0')):
msg = """
CuPy does not work with Python 3.5.0.
We strongly recommend to use another version of Python.
If you want to use CuPy with Python 3.5.0 at your own risk,
set 1 to CUPY_PYTHON_350_FORCE environment variable."""
print(msg)
sys.exit(1)
requirements = {
'setup': [
'fastrlock>=0.3',
],
'install': [
'numpy>=1.9.0',
'six>=1.9.0',
'fastrlock>=0.3',
],
'stylecheck': [
'autopep8==1.3.5',
'flake8==3.5.0',
'pbr==4.0.4',
'pycodestyle==2.3.1',
],
'test': [
'pytest<4.2.0', # 4.2.0 is slow collecting tests and times out on CI.
'attrs<19.2.0', # pytest 4.1.1 does not run with attrs==19.2.0
'mock',
],
'doctest': [
'matplotlib',
'theano',
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
],
'travis': [
'-r stylecheck',
'-r docs',
],
'appveyor': [
'-r test',
],
'jenkins': [
'-r test',
'pytest-timeout',
'pytest-cov',
'coveralls',
'codecov',
],
}
def reduce_requirements(key):
# Resolve recursive requirements notation (-r)
reqs = requirements[key]
resolved_reqs = []
for req in reqs:
if req.startswith('-r'):
depend_key = req[2:].lstrip()
reduce_requirements(depend_key)
resolved_reqs += requirements[depend_key]
else:
resolved_reqs.append(req)
requirements[key] = resolved_reqs
for k in requirements.keys():
reduce_requirements(k)
extras_require = {k: v for k, v in requirements.items() if k != 'install'}
setup_requires = requirements['setup']
install_requires = requirements['install']
tests_require = requirements['test']
package_data = {
'cupy': [
'core/include/cupy/complex/arithmetic.h',
'core/include/cupy/complex/catrig.h',
'core/include/cupy/complex/catrigf.h',
'core/include/cupy/complex/ccosh.h',
'core/include/cupy/complex/ccoshf.h',
'core/include/cupy/complex/cexp.h',
'core/include/cupy/complex/cexpf.h',
'core/include/cupy/complex/clog.h',
'core/include/cupy/complex/clogf.h',
'core/include/cupy/complex/complex.h',
'core/include/cupy/complex/complex_inl.h',
'core/include/cupy/complex/cpow.h',
'core/include/cupy/complex/cproj.h',
'core/include/cupy/complex/csinh.h',
'core/include/cupy/complex/csinhf.h',
'core/include/cupy/complex/csqrt.h',
'core/include/cupy/complex/csqrtf.h',
'core/include/cupy/complex/ctanh.h',
'core/include/cupy/complex/ctanhf.h',
'core/include/cupy/complex/math_private.h',
'core/include/cupy/carray.cuh',
'core/include/cupy/complex.cuh',
'core/include/cupy/atomics.cuh',
'core/include/cupy/_cuda/cuda-*/*.h',
'core/include/cupy/_cuda/cuda-*/*.hpp',
'cuda/cupy_thrust.cu',
],
}
package_data['cupy'] += cupy_setup_build.prepare_wheel_libs()
package_name = cupy_setup_build.get_package_name()
long_description = cupy_setup_build.get_long_description()
ext_modules = cupy_setup_build.get_ext_modules()
build_ext = cupy_setup_build.custom_build_ext
sdist = cupy_setup_build.sdist_with_cython
here = os.path.abspath(os.path.dirname(__file__))
# Get __version__ variable
exec(open(os.path.join(here, 'cupy', '_version.py')).read())
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
Programming Language :: Cython
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: MacOS
"""
setup(
name=package_name,
version=__version__, # NOQA
description='CuPy: NumPy-like API accelerated with CUDA',
long_description=long_description,
author='Seiya Tokui',
author_email='[email protected]',
url='https://cupy.chainer.org/',
license='MIT License',
project_urls={
"Bug Tracker": "https://github.com/cupy/cupy/issues",
"Documentation": "https://docs-cupy.chainer.org/",
"Source Code": "https://github.com/cupy/cupy",
},
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
packages=[
'cupy',
'cupy.binary',
'cupy.core',
'cupy.creation',
'cupy.cuda',
'cupy.cuda.memory_hooks',
'cupy.ext',
'cupy.fft',
'cupy.indexing',
'cupy.io',
'cupy.lib',
'cupy.linalg',
'cupy.logic',
'cupy.manipulation',
'cupy.math',
'cupy.misc',
'cupy.padding',
'cupy.prof',
'cupy.random',
'cupy.sorting',
'cupy.sparse',
'cupy.sparse.linalg',
'cupy.statistics',
'cupy.testing',
'cupyx',
'cupyx.fallback_mode',
'cupyx.scipy',
'cupyx.scipy.fftpack',
'cupyx.scipy.ndimage',
'cupyx.scipy.sparse',
'cupyx.scipy.sparse.linalg',
'cupyx.scipy.special',
'cupyx.scipy.linalg',
'cupyx.linalg',
'cupyx.linalg.sparse'
],
package_data=package_data,
zip_safe=False,
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
ext_modules=ext_modules,
cmdclass={'build_ext': build_ext,
'sdist': sdist},
)