Skip to content

Commit

Permalink
Ensure to include proper resource files in the "setup.py" specification
Browse files Browse the repository at this point in the history
  • Loading branch information
p1-mmr committed Feb 8, 2024
1 parent 8241f5e commit 87c5cd4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,23 @@
url = 'https://github.com/P1sec/QCSuper',
requires = ['pyserial(>=3.5)', 'pyusb(>=1.2.1)', 'crcmod(>=1.7)', 'pycrate(>=0.7.0)'],
install_requires = [],
include_package_data = True,
package_data = {
'qcsuper.inputs.adb_bridge': ['*'],
'qcsuper.inputs.adb_wsl2_bridge': ['*'],
'qcsuper.inputs.external': ['*'],
'qcsuper.inputs.external.adb': ['*'],
'qcsuper.inputs.external.adb.lib64': ['*'],
'qcsuper.inputs.adb_bridge': ['*']
},
packages = [
'qcsuper',
'qcsuper.inputs',
'qcsuper.inputs.adb_bridge',
'qcsuper.inputs.adb_wsl2_bridge',
'qcsuper.inputs.external',
'qcsuper.inputs.external.adb',
'qcsuper.inputs.external.adb.lib64',
'qcsuper.protocol',
'qcsuper.modules',
'qcsuper.modules.efs_shell_commands'
Expand Down

0 comments on commit 87c5cd4

Please sign in to comment.