Skip to content

Commit

Permalink
small changes to ui
Browse files Browse the repository at this point in the history
  • Loading branch information
dantheman0007 committed May 31, 2020
1 parent a0164ed commit e416650
Show file tree
Hide file tree
Showing 207 changed files with 5,277 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bin/cxfreeze
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())
8 changes: 8 additions & 0 deletions bin/cxfreeze-quickstart
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())
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip
31 changes: 31 additions & 0 deletions lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/METADATA
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 lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/RECORD

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions lib/python3.7/site-packages/cx_Freeze-6.1.dist-info/WHEEL
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

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

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cx_Freeze
12 changes: 12 additions & 0 deletions lib/python3.7/site-packages/cx_Freeze/__init__.py
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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 changes: 18 additions & 0 deletions lib/python3.7/site-packages/cx_Freeze/common.py
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
Loading

0 comments on commit e416650

Please sign in to comment.