Skip to content

Commit 6501590

Browse files
Add pyproject.toml.
Also updated cuda requires to include cupy.
1 parent 553d020 commit 6501590

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

pyproject.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[build-system]
2+
requires = [
3+
"wheel",
4+
"setuptools",
5+
"oldest-supported-numpy",
6+
"Cython>=0.20",
7+
"mako",
8+
"pytools"
9+
]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def get_version():
2424
if sys.version_info[0] < 3:
2525
tests_require += ['mock>=1.0']
2626
docs_require = ['sphinx']
27-
cuda_require = ['pycuda']
27+
cuda_require = ['pycuda', 'cupy']
2828
opencl_require = ['pyopencl']
2929

3030
classes = '''

0 commit comments

Comments
 (0)