-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0164ed
commit e416650
Showing
207 changed files
with
5,277 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/Users/dlejeune/Documents/GitHub/sudoku-solver/bin/python | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from cx_Freeze.main import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/Users/dlejeune/Documents/GitHub/sudoku-solver/bin/python | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from cx_Freeze.setupwriter import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
31 changes: 31 additions & 0 deletions
31
lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/METADATA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Metadata-Version: 2.1 | ||
Name: cx-Freeze | ||
Version: 6.1 | ||
Summary: create standalone executables from Python scripts | ||
Home-page: https://anthony-tuininga.github.io/cx_Freeze | ||
Maintainer: Anthony Tuininga | ||
Maintainer-email: anthony.tuininga@gmail.com | ||
License: Python Software Foundation License | ||
Keywords: freeze | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: Python Software Foundation License | ||
Classifier: Natural Language :: English | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: C | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3 :: Only | ||
Classifier: Topic :: Software Development :: Build Tools | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: System :: Software Distribution | ||
Classifier: Topic :: Utilities | ||
|
||
create standalone executables from Python scripts | ||
|
||
|
187 changes: 187 additions & 0 deletions
187
lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/RECORD
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Wheel-Version: 1.0 | ||
Generator: bdist_wheel (0.34.2) | ||
Root-Is-Purelib: false | ||
Tag: cp37-cp37m-macosx_10_15_x86_64 | ||
|
4 changes: 4 additions & 0 deletions
4
lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/entry_points.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[console_scripts] | ||
cxfreeze = cx_Freeze.main:main | ||
cxfreeze-quickstart = cx_Freeze.setupwriter:main | ||
|
1 change: 1 addition & 0 deletions
1
lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/top_level.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cx_Freeze |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import sys | ||
from cx_Freeze.dist import bdist_rpm, build, build_exe, install, install_exe,\ | ||
setup | ||
if sys.platform == "win32": | ||
from cx_Freeze.windist import bdist_msi | ||
elif sys.platform == "darwin": | ||
from cx_Freeze.macdist import bdist_dmg, bdist_mac | ||
from cx_Freeze.finder import Module, ModuleFinder | ||
from cx_Freeze.freezer import ConfigError, ConstantsModule, Executable, Freezer | ||
|
||
__version__ = "6.1" | ||
version = __version__ |
Binary file added
BIN
+664 Bytes
lib/python3.7/site-packages/cx_Freeze/__pycache__/__init__.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+748 Bytes
lib/python3.7/site-packages/cx_Freeze/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+527 Bytes
lib/python3.7/site-packages/cx_Freeze/__pycache__/common.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+611 Bytes
lib/python3.7/site-packages/cx_Freeze/__pycache__/common.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+11.6 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/dist.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+11.7 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/dist.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+19.3 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/finder.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+19.4 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/finder.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+21.6 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/freezer.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+21.7 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/freezer.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+31.9 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/hooks.cpython-37.opt-1.pyc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.57 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/macdist.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+9.65 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/macdist.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+5.04 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/main.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+5.12 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/main.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+3.48 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/setupwriter.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+3.56 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/setupwriter.cpython-37.pyc
Binary file not shown.
Binary file added
BIN
+15.1 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/windist.cpython-37.opt-1.pyc
Binary file not shown.
Binary file added
BIN
+15.1 KB
lib/python3.7/site-packages/cx_Freeze/__pycache__/windist.cpython-37.pyc
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
""" | ||
This module contains utility functions shared between cx_Freeze modules. | ||
""" | ||
|
||
|
||
def normalize_to_list(value): | ||
""" | ||
Takes the different formats of options containing multiple values and | ||
returns the value as a list object. | ||
""" | ||
if value is None: | ||
normalizedValue = [] | ||
elif isinstance(value, str): | ||
normalizedValue = value.split(',') | ||
else: | ||
normalizedValue = list(value) | ||
|
||
return normalizedValue |
Oops, something went wrong.