We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d9e1f commit 629d13aCopy full SHA for 629d13a
setup.py
@@ -29,15 +29,12 @@
29
30
import setuptools.command.install as orig_install
31
import setuptools.command.develop as orig_develop
32
+
33
from setuptools import setup, Extension, find_packages
34
from Cython.Build import cythonize
35
36
import numpy as np
37
-requirements = [
38
- "cython",
39
-]
40
-
41
IS_WIN = False
42
IS_MAC = False
43
IS_LIN = False
@@ -220,8 +217,8 @@ def _get_cmdclass():
220
217
packages=find_packages(include=["*"]),
221
218
include_package_data=True,
222
219
ext_modules=extensions(),
223
- setup_requires=requirements,
224
- install_requires=requirements,
+ zip_safe=False,
+ setup_requires=["Cython"],
225
keywords="dpctl",
226
classifiers=[
227
"Development Status :: 3 - Alpha",
0 commit comments