mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
close #233
This commit is contained in:
10
PythonHome/Scripts/chardetect-script.py
Normal file
10
PythonHome/Scripts/chardetect-script.py
Normal file
@@ -0,0 +1,10 @@
|
||||
#!d:\Personal\Github\Wox\PythonHome\python.exe
|
||||
# EASY-INSTALL-ENTRY-SCRIPT: 'chardet==2.3.0','console_scripts','chardetect'
|
||||
__requires__ = 'chardet==2.3.0'
|
||||
import sys
|
||||
from pkg_resources import load_entry_point
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(
|
||||
load_entry_point('chardet==2.3.0', 'console_scripts', 'chardetect')()
|
||||
)
|
||||
BIN
PythonHome/Scripts/chardetect.exe
Normal file
BIN
PythonHome/Scripts/chardetect.exe
Normal file
Binary file not shown.
15
PythonHome/Scripts/chardetect.exe.manifest
Normal file
15
PythonHome/Scripts/chardetect.exe.manifest
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity version="1.0.0.0"
|
||||
processorArchitecture="X86"
|
||||
name="chardetect"
|
||||
type="win32"/>
|
||||
<!-- Identify the application security requirements. -->
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
</assembly>
|
||||
Reference in New Issue
Block a user