Skip to content

Commit

Permalink
python embeddable package
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion committed Oct 27, 2023
1 parent d6fd18d commit 9194d73
Show file tree
Hide file tree
Showing 36 changed files with 690 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Auto detect text files and perform LF normalization
* text=auto

# Don't count Python C API as actual code
# Don't count Python C API and embeddable package as actual code
project/** linguist-vendored
package/** linguist-vendored
33 changes: 33 additions & 0 deletions hxpy/Build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,37 @@
<lib name="${haxelib:hxpy}/libs/python3.lib" />
<lib name="${haxelib:hxpy}/libs/python311.lib" />
</target>
<copyFile name="_asyncio.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_bz2.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_ctypes.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_decimal.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_elementtree.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_hashlib.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_lzma.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_msi.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_multiprocessing.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_overlapped.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_queue.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_socket.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_sqlite3.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_ssl.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_uuid.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="_zoneinfo.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="libcrypto-1_1.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="libffi-8.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="LICENSE.txt" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="pyexpat.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="python.cat" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="python.exe" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="python3.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="python311._pth" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="python311.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="python311.zip" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="pythonw.exe" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="select.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="sqlite3.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="unicodedata.pyd" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="vcruntime140_1.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="vcruntime140.dll" from="${haxelib:hxpy}package" toolId="exe" />
<copyFile name="winsound.pyd" from="${haxelib:hxpy}package" toolId="exe" />
</xml>
650 changes: 650 additions & 0 deletions package/LICENSE.txt

Large diffs are not rendered by default.

Binary file added package/_asyncio.pyd
Binary file not shown.
Binary file added package/_bz2.pyd
Binary file not shown.
Binary file added package/_ctypes.pyd
Binary file not shown.
Binary file added package/_decimal.pyd
Binary file not shown.
Binary file added package/_elementtree.pyd
Binary file not shown.
Binary file added package/_hashlib.pyd
Binary file not shown.
Binary file added package/_lzma.pyd
Binary file not shown.
Binary file added package/_msi.pyd
Binary file not shown.
Binary file added package/_multiprocessing.pyd
Binary file not shown.
Binary file added package/_overlapped.pyd
Binary file not shown.
Binary file added package/_queue.pyd
Binary file not shown.
Binary file added package/_socket.pyd
Binary file not shown.
Binary file added package/_sqlite3.pyd
Binary file not shown.
Binary file added package/_ssl.pyd
Binary file not shown.
Binary file added package/_uuid.pyd
Binary file not shown.
Binary file added package/_zoneinfo.pyd
Binary file not shown.
Binary file added package/libcrypto-1_1.dll
Binary file not shown.
Binary file added package/libffi-8.dll
Binary file not shown.
Binary file added package/libssl-1_1.dll
Binary file not shown.
Binary file added package/pyexpat.pyd
Binary file not shown.
Binary file added package/python.cat
Binary file not shown.
Binary file added package/python.exe
Binary file not shown.
Binary file added package/python3.dll
Binary file not shown.
5 changes: 5 additions & 0 deletions package/python311._pth
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python311.zip
.

# Uncomment to run site.main() automatically
#import site
Binary file added package/python311.dll
Binary file not shown.
Binary file added package/python311.zip
Binary file not shown.
Binary file added package/pythonw.exe
Binary file not shown.
Binary file added package/select.pyd
Binary file not shown.
Binary file added package/sqlite3.dll
Binary file not shown.
Binary file added package/unicodedata.pyd
Binary file not shown.
Binary file added package/vcruntime140.dll
Binary file not shown.
Binary file added package/vcruntime140_1.dll
Binary file not shown.
Binary file added package/winsound.pyd
Binary file not shown.

0 comments on commit 9194d73

Please sign in to comment.