Skip to content

Commit

Permalink
updating package-data with platform-specific shared files
Browse files Browse the repository at this point in the history
  • Loading branch information
rallen10 committed Sep 10, 2024
1 parent d7fca3e commit 52c2c66
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,14 @@ version = {attr = "kspdg.__version__"}
# ensure that private_src pyarmor shared object files are part of kspdg build
[tool.setuptools.package-data]
kspdg = [
"private_src/python3_9/pyarmor_runtime_000000/*.so",
"private_src/python3_12/pyarmor_runtime_000000/*.so"
"private_src/python3_9/Darwin_arm64/pyarmor_runtime_000000/*.so",
"private_src/python3_9/Darwin_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_9/Linux_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_9/Windows_x86_64/pyarmor_runtime_000000/*.pyd",
"private_src/python3_12/Darwin_arm64/pyarmor_runtime_000000/*.so",
"private_src/python3_12/Darwin_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_12/Linux_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_12/Windows_x86_64/pyarmor_runtime_000000/*.pyd"
]

# Further dependencies for dev, testing, and envrionments with advanced bots
Expand Down

0 comments on commit 52c2c66

Please sign in to comment.