Skip to content

Commit

Permalink
Python bindings: Refreshed the list of files needed to be copied for …
Browse files Browse the repository at this point in the history
…sdist archive
  • Loading branch information
Antelox committed Nov 13, 2024
1 parent 1c9dc46 commit 4f60f09
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,10 @@ def copy_sources():
shutil.copytree(os.path.join(BUILD_DIR, "include"), os.path.join(SRC_DIR, "include"))

src.extend(glob.glob(os.path.join(BUILD_DIR, "*.[ch]")))

src.extend(glob.glob(os.path.join(BUILD_DIR, "*.m[dk]")))
src.extend(glob.glob(os.path.join(BUILD_DIR, "LICENSES/*")))
src.extend(glob.glob(os.path.join(BUILD_DIR, "README")))
src.extend(glob.glob(os.path.join(BUILD_DIR, "*.TXT")))
src.extend(glob.glob(os.path.join(BUILD_DIR, "RELEASE_NOTES")))
src.extend(glob.glob(os.path.join(BUILD_DIR, "ChangeLog")))
src.extend(glob.glob(os.path.join(BUILD_DIR, "CMakeLists.txt")))

for filename in src:
Expand Down

0 comments on commit 4f60f09

Please sign in to comment.