Skip to content

Commit

Permalink
Merge pull request #1441 from IntelPython/heed-setuptools-warnings
Browse files Browse the repository at this point in the history
Resolves setuptools "Package would be ignored" warnings
  • Loading branch information
oleksandr-pavlyk authored Oct 13, 2023
2 parents 526f410 + 67c7dbf commit 6d681db
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
23 changes: 0 additions & 23 deletions MANIFEST.in

This file was deleted.

26 changes: 24 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,31 @@ def _get_cmdclass():
"dpctl.utils",
],
package_data={
"dpctl": ["tests/*.*", "tests/helper/*.py", "tests/elementwise/*.py"]
"dpctl": [
"tests/*.*",
"tests/helper/*.py",
"tests/elementwise/*.py",
"tests/*.pyx",
"tests/input_files/*",
"resources/cmake/*.cmake",
"include/*.h*",
"include/syclinterface/*.h*",
"include/syclinterface/Config/*.h",
"include/syclinterface/Support/*.h",
"tensor/libtensor/include/kernels/*.h*",
"tensor/libtensor/include/utils/*.h*",
"tensor/include/dlpack/*.*",
"_sycl*.h",
"memory/_memory*.h",
"program/_program*.h",
"tensor/_usmarray*.h",
"*.pxd",
"memory/*.pxd",
"tensor/*.pxd",
"program/*.pxd",
]
},
include_package_data=True,
include_package_data=False,
zip_safe=False,
setup_requires=["Cython"],
install_requires=[
Expand Down

0 comments on commit 6d681db

Please sign in to comment.