fixed Python packaging error not including header files

This commit is contained in:
TheWover 2023-03-03 14:33:54 -05:00
parent d61f83acf2
commit c1592156b7
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
include README.md
include Makefile*
include LICENSE
include loader_exe_x64.h
include loader_exe_x86.h
include version-release-notes.txt
recursive-include . *.c
recursive-include loader *

View File

@ -11,7 +11,7 @@ library_dirs = ['lib']
extra_compile_args = []
extra_link_args = []
extra_objects = []
include_dirs = ['include', './']
include_dirs = ['include']
sources = ['donut.c',
'hash.c',
'encrypt.c',
@ -44,7 +44,7 @@ module = Extension(
setup(
name='donut-shellcode',
version='1.0',
version='1.0.2',
description='Donut shellcode Python C extension',
long_description=long_description,
long_description_content_type="text/markdown",