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 b0b25d7 commit 154c64fCopy full SHA for 154c64f
setup.py
@@ -26,7 +26,7 @@
26
import versioneer
27
28
from Cython.Build import cythonize
29
-from setuptools import setup, Extension
+from setuptools import setup, Extension, find_packages
30
31
import numpy as np
32
@@ -125,7 +125,7 @@ def getpyexts():
125
license="Apache 2.0",
126
author="Intel Corporation",
127
url='https://github.com/IntelPython/PyDPPL',
128
- packages=['dppl'],
+ packages=find_packages(include=["dppl", "dppl.*"]),
129
ext_modules = getpyexts(),
130
setup_requires=requirements,
131
cffi_modules=[
0 commit comments