Skip to content

Commit

Permalink
add back shutil move
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilDohne committed Feb 26, 2024
1 parent 76ba124 commit 494ade7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
)


shutil.move('python/psapi-stubs', '.')

def package_files(directory):
paths = []
Expand All @@ -163,7 +164,7 @@ def package_files(directory):
ext_modules=[CMakeExtension("psapi")],
cmdclass={"build_ext": CMakeBuild},
packages=["psapi-stubs"],
package_data={"psapi-stubs": package_files("python/psapi-stubs")},
package_data={"psapi-stubs": package_files("psapi-stubs")},
zip_safe=False,
install_requires= [
"numpy>=1.26"
Expand Down

0 comments on commit 494ade7

Please # to comment.